Focus Points

Plugin for Lightroom to show which focus point was active in the camera when a photo was taken
Alternatives To Focus Points
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Magiccamera4,874
2 years ago95Java
Real-time Filter Camera&VideoRecorder And ImageEditor With Face Beauty For Android---包含美颜等40余种实时滤镜相机,可拍照、录像、图片修改
Howdy4,531
22 days ago151mitPython
🛡️ Windows Hello™ style facial authentication for Linux
Fotoapparat3,77428 days ago2August 09, 201989apache-2.0Kotlin
Making Camera for Android more friendly. 📸
Jeelizfacefilter2,3573a month ago32September 09, 20221apache-2.0JavaScript
Javascript/WebGL lightweight face tracking library designed for augmented reality webcam filters. Features : multiple faces detection, rotation, mouth opening. Various integration examples are provided (Three.js, Babylon.js, FaceSwap, Canvas2D, CSS3D...).
Esp Who1,404
a month ago63otherC
Face detection and recognition framework
Dlib_face_recognition_from_camera1,116
7 months ago2mitPython
Detect and recognize the faces from camera / 调用摄像头进行人脸识别,支持多张人脸同时识别
Home_surveillance1,110
2 years ago54HTML
Home surveillance system with facial recognition
Facedetector1,083
5 years ago1August 11, 201919apache-2.0Java
Face detection for your Android app
Jeelizweboji1,004
7 days ago2April 30, 2021apache-2.0JavaScript
JavaScript/WebGL real-time face tracking and expression detection library. Build your own emoticons animated in real time in the browser! SVG and THREE.js integration demos are provided.
Brfv4_javascript_examples450
4 years ago10JavaScript
BRFv4 - HTML5/Javascript - examples project. Reference implementation for all other platform example packages.
Alternatives To Focus Points
Select To Compare


Alternative Project Comparisons
Readme

Focus Points

A plugin for Lightroom to show which focus point was active when the picture was taken.

Screenshot

Supported Cameras

  • Canon cameras
    • all EOS and point and shoots.
    • 7D Mark ii, 5D Mark iii, 5D Mark iv, 350D, 40D, 50D, 60D, 70D, 80D, 7D, 5D, etc,
    • Powershot G12, G16, G1X, G5X, IXUS 310 HS, SX30, SX40 HS
  • Nikon
    • D7100, D7200, D700, D800 (possibly D810 and D800E), D5500, D5300, D5200, D300
  • Sony E-Mount cameras
    • Full Frame
      • α7 III
      • α7R II, α7R III, α7R IV
      • α9, α9 II
    • APS-C
      • α6100, α6400, α6500, α6600
  • Fuji cameras
    • all recent X bodies (X-T2, X-T1, X-T10, X-Pro2, X-Pro1, X-A3, X-A2, X-A1, X-A10, X-E2S, X-E2, X-E1, X100T, X30, X70, etc)
  • Olympus cameras
    • (Should work on recent E-* bodies)
  • Panasonic cameras
  • Pentax (full list)
    • Tested
      • K-50, K-S1, K-5 II, K-5 IIs, K-5, K-30, K-7, K20D, K-r, K200D, K10D, K110D, K100D Super, K100D, *ist DS2, *ist DS, *ist D
    • Working, but missing features
      • K-1, K-3, K-3 II
    • Untested, but should work:
      • KP, K-70, K-S2, K-500, K-x
  • iphone and ipad

Installing

Installation steps

  1. Use the green button in this webpage called "Clone or download".
  2. Extract the zip and (optionally) rename the folder from "focuspoints.lrdevplugin" to "focuspoints.lrplugin"
  3. Move this folder to where you'd normally kept your Lightroom plugins.
  4. Open Lightroom and go to File -> Plug-in Manager. Then click the "Add" button and select the folder
  5. Once installed, in Library mode with a photo selected go to "Library -> Plug-in Extras -> Focus Point"
Screenshot

Supported AF-Points

Currently, 5 types of AF-points will be displayed :

  • AF selected in focus The AF-Point is selected and in focus
  • AF selected The AF-Point is selected
  • AF in focus The AF-Point is in focus
  • AF selected in focus The AF-Point is inactive
  • AF selected in focus A face was detected by the camera at this position
Screenshot

Please note that not all cameras save the needed information in the Exifs of the photo. Thus, the accuracy of the displayed points will greatly depend on whether or not your camera supports it.

Adding your own camera

It's very likely your camera is already supported. So try the plugin first before doing anything. :)

If your camera reports its focus points dynamically, adding support for you camera should be easy. Simply update or create a new CameraDelegate which extracts the focus points. Update the PointsRendererFactory so it knows about this new camera.

If your camera does not report its focus points dynamically, such as in the case of Nikons, this should be as painless as possible. You will need to map all of your camera's focus points to pixel coordinates. Refer to the "focus_points/nikon corporation/nikon d7200.txt" as an example.

-- 1st column
B1 = {810, 1550}
C1 = {810, 1865}
D1 = {810, 2210}

-- an so on

The best way I found to do this was to set up a ruler/tape measure, get out my camera and I took a photo at each of the focus points lining it up exactly with the 1-inch mark. I then imported those pictures into Lightroom and ran this plugin so I could see the metadata. From the metadata, I could see the focus points name. I then took the image into photoshop and measured from the top left corner of the image to the top left corner of the focus point. I compared the preview from the camera to my photoshop selection and got as close as possible. Once you have done all of that, add the file to "focus_points/{camera_maker}/{camera_model}.txt" using all lowercase. Then all is done.

The camera model must only contain characters valid on all supported file systems. If a character is not valid (for example '*' in the model "PENTAX *ist D") it must be mapped to a valid character combination. The mapping is done in PointsUtils.readFromFile(): '*' -> '_a_'.

If 2 or more cameras share a common points mapping, simplying add that to the list of known duplicate as in the NikonDuplicates file. With this, both Nikon D7100 and Nikon D7200 will share the same mapping file.

Known Issues

  1. Not compatible if photo was edited in Photoshop. 3rd party tools often remove the necessary metadata from the image.

Contributing as a Developer

Please see the Contributing.md file before being any new work.

Special Thanks

There's been a lot of man-hours put into this effort so far. All volunteer. So help me in thanking the individuals who has worked hard on this. First off, thanks for Phil Harvey for providing the 3rd party library ExifTool. The following is a list of the individual contributors on this project. These guys have fixed bugs, added camera support, added face detection, added support for your iphone, and many other cool features. (If you are a dev and I've missed you, please feel free to update this file or add your real name):

rderimay, philmoz, project802, jandhollander, DeziderMesko, StefLedof, roguephysicist, ropma.

Full list can be seen here.

License

Copyright 2016 Whizzbang Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Popular Camera Projects
Popular Face Projects
Popular Hardware Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Lua
Perl
Camera
Face
Iphone
Photoshop