Skip to main content

THE BEST CHEAP CAMERA FOR YOUTUBE! - Nikon D5200 Unboxing 24 2 MP Nikkor...




The Nikon D5200 uses a 24.1 effective megapixel sensor that has not been seen elsewhere. Features-wise the Nikon D5200 is a blend of the Nikon D3200, Nikon D5100, D7000 and D7100, since it has the same pixel count as the Nikon D3200 and D7100, albeit with a different sensor. It also has an articulating screen like the Nikon D5100 and the same metering and AF systems as the Nikon D7000.
The new camera's control layout, however, is very similar to the Nikon D5100's, and is more streamlined than the Nikon D7100's. Nikon has paired the D5200's 24.1 million effective pixel CMOS sensor with its EXPEED 3 processing engine, and this enables a native sensitivity range of ISO 100-6400. If light levels are very low, this can be expanded upwards to the equivalent of ISO 25,600.



Whereas the D5100 has Nikon's Multi-CAM 1000 AF module with 11 focus points, including one cross-type, the Nikon D5200 has the Multi-CAM 4800 DX unit that is also found in the Nikon D7000. This means that it has a total of 39 AF points, with nine being cross-type, which should make the Nikon D5200's AF system considerably more flexile and effective than the Nikon D5100's. This may make the Nikon D5200 more attractive to photographers wanting to try their hands at sports photography, and these users will appreciate the fact that it can shoot at a maximum continuous rate of 5fps, up 1fps on the Nikon D5100.



Another feature borrowed from the Nikon D7000 that improves upon the Nikon D5100 is the 2016-pixel RGB sensor for light metering and white balance assessment. This feeds information into the improved Automatic Scene Recognition system that attempts to match the exposure settings, autofocus and white balance to the scene. Like the Nikon D5100, the Nikon D5200 has a collection of Special Effects and an in-camera HDR mode that combines two shots to create one image with greater shadow and highlight detail. Unfortunately, both modes can only be used when shooting just JPEG files. Naturally the Nikon D5200 is capable of recording Full HD videos, like the Nikon D5100, but the frame rate range has been expanded to include 60i and 50i as well as 30p, 25p and 24p. This should make for smoother footage of moving subjects, and gives scope for creating slow motion movies.

Comments

Popular posts from this blog

Obstacle Avoiding Robot Car Using Arduino - How To Make a Smart Car

How To Make Smart Robot Car With Arduino Obstacle avoiding robot car using Arduino, how to make a smart car with ultrasonic sensor, servo motor, and L298N motor driver module. Arduino UNO :- https://amzn.to/3MF9jky SG90 Servo Motor And HC-SR04 Ultrasonic Sensor :- https://amzn.to/3EX03pu LM298N motor driver module :- https://amzn.to/3y2tx3Y BO Motor with Wheel Pair :- https://amzn.to/38zFMu6 arduino smart car kit :- https://amzn.to/3kmtZlk Project Code :-  #include <Servo.h>          //Servo motor library. This is standard library #include <NewPing.h>        //Ultrasonic sensor function library. You must install this library //our L298N control pins const int LeftMotorForward = 7; const int LeftMotorBackward = 6; const int RightMotorForward = 4; const int RightMotorBackward = 5; //sensor pins #define trig_pin A1 //analog input 1 #define echo_pin A2 //analog input 2 #define maximum_distance 200 boolean goesForward = false; int distance = 100; NewPing sonar(trig_pin

Bluetooth Robot Car Using Arduino Project Step By Step

Bluetooth Controlled Robot Car Using Arduino Bluetooth Controlled Robot Car Using Arduino Project using LM298n motor deriver and hc-05 bluetooth module step by step tutorial. Code Download :- Click Here Arduino bluetooth controller app Arduino bluetooth controller App

How To Make Simple Digital Clock Using Arduino UNO Very Easy Step By Step

Digital clock using Arduino UNO , TM1637 4-digit 7 segment display and DS1307 RTC module. Here I show you how to make a simple digital clock using Arduino UNO very easily.  TM1637 4-digit 7 segment display :-  https://amzn.to/3R3KC3p DS1307 RTC module:-    https://amzn.to/3dPDfyc    Arduino UNO:- https://amzn.to/3KcNfxR Jumper Wire:-    https://amzn.to/3KcBIyH             Project Code :-  const int clock = 11; const int data = 10; uint8_t digits[] = { 0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f }; void setup() { setupInterrupt(); pinMode(clock, OUTPUT); pinMode(data, OUTPUT); start(); writeValue(0x8c); stop(); write(0x00, 0x00, 0x00, 0x00); } byte tcnt2; // set current time by editing the values at line 16 and 17 unsigned long int setMinutes = 9; // set minutes unsigned long int setHours = 9; // set hours unsigned long time = (setMinutes * 60 * 1000) + (setHours * 3600 *1000); void setupInterrupt() { TIMSK2 &= ~(1<<TOIE2); TCCR2A &=