Free 186 More Best Homemade Tools eBook:  
Get 2,000+ tool plans, full site access, and more.

User Tag List

Results 1 to 2 of 2

Thread: Enhanced night vision goggle-binocular - video

  1. #1
    Content Editor
    Supporting Member
    Altair's Avatar
    Join Date
    Aug 2013
    Posts
    11,874
    Thanks
    1,361
    Thanked 29,659 Times in 9,850 Posts

    Enhanced night vision goggle-binocular - video

    Enhanced night vision goggle-binocular. 0.45 video. Video caption: "Soldiers assigned to 4th Battalion, 23rd Infantry Regiment, 2nd Stryker Brigade Combat Team, 7th Infantry Division, conduct a platoon live fire using the Enhanced Night Vision Goggle-Binoculars at Joint Base Lewis-McChord April 19, 2021. The ENVG-B arms U.S. Army soldiers with the ability to target, engage, and neutralize threats; enhancing mission success and operator safety. (U.S. Army video by 1st Lt. Egor Krasnonosenkikh) DVIDS"




    Previously:

    Night vision glasses with color - GIF
    Smart glass-aided corner shot - GIF

    186 More Best Homemade Tools eBook

  2. The Following 2 Users Say Thank You to Altair For This Useful Post:

    Floradawg (Jul 27, 2021), nova_robotics (Jul 26, 2021)

  3. #2
    Supporting Member
    Join Date
    Sep 2018
    Posts
    2,145
    Thanks
    10,119
    Thanked 1,142 Times in 615 Posts

    nova_robotics's Tools
    This is neat, but the nuts and bolts are actually not that complicated. It's just a small computer running OpenCV and applying a Canny filter to the image. It's a great application for the technology, but the underlying technology is pretty old. I've used Canny filters in computer vision projects a number of times. If you want to replicate this on your own computer, the following Python code will perform a live Canny filter from your webcam:

    import cv2

    def canny_webcam():
    cap = cv2.VideoCapture(0)

    while True:
    ret, frame = cap.read()
    frame = cv2.GaussianBlur(frame, (7, 7), 2)
    frame = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

    edge = cv2.Canny(frame, 20, 50)

    cv2.imshow('Canny Edge', edge)

    if cv2.waitKey(20) == ord('q'):
    break

    canny_webcam()

    Enhanced night vision goggle-binocular - video-canny_filter.png

    2000 Tool Plans

  4. The Following User Says Thank You to nova_robotics For This Useful Post:

    metric_taper (Jul 31, 2021)

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •