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

Clap On Off Switch Circuit Using Arduino

  Arduino Clap LED program #define MicAO 8 int ledPin = 13; int clap = 0; long detection_range_start = 0; long detection_range = 0; boolean status_lights = false; void setup() {   pinMode(MicAO, INPUT);   pinMode(ledPin,OUTPUT);   } void loop() { int status_MicAO = digitalRead(MicAO); if (status_MicAO == 0) { if (clap == 0) { detection_range_start = detection_range = millis(); clap++; } else if (clap > 0 && millis()-detection_range >= 50) { detection_range = millis(); clap++; } } if (millis()-detection_range_start >= 400) { if (clap == 2) { if (!status_lights) { status_lights = true; digitalWrite(ledPin, HIGH); } else if (status_lights) { status_lights = false; digitalWrite(ledPin, LOW); } } clap = 0; } }

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

IOT Based Water Level Indicator Project Using Esp32 And Ultrasonic Sensor

  Water Level Indicator Project Using ESP32   Water Level Indicator with Alarm on Tank Full.   IoT Wi-Fi smart water level indicator for tanks with mobile app control . 📟 OLED Display (0.96" I2C SSD1306)   OLED Pin         ESP32 Pin VCC                     3.3V GND                     GND SDA                    GPIO 21 SCL                      GPIO 22     🔔 BUZZER   Buzzer Pin        ESP32 Pin   +           GPIO 26 -            GND         Each LED connects to an ESP32 GPIO pin via a current-limiting resistor.   ...