Deep Clean

Deep Clean watches a room and flags all surfaces as they are touched for special attention on the next cleaning to help prevent the spread of contagious disease.

One use case would be in a hospital room. When a patient checks out, the cleaning service could view all surfaces that need special attention.

How it Works

Deep Clean uses a stereo camera to detect the depth (z-coordinate) of an object of interest (e.g. a hand) in the video frame. OpenPose is used to detect hand location (x,y-coordinates). When a hand is at the same position and depth as another object in view (i.e. touching), that location is tracked. An image can be generated showing all surfaces that have been touched (script).

Camera

Camera options for the Xavier tend to be on the expensive side for a hobbyist, so I built my own from a pair of Raspberry Pi cameras. To keep the cameras in the proper relative positions, I designed and 3D printed a base and a stabilizer.

The Xavier does not have CSI connections for this type of camera, so I used a pair of Raspberry Pis to capture images (script) when triggered via GPIO from the Xavier. This is far from optimal, and shows itself in the low frame rate, but it works adequately on a budget.

The cameras were calibrated (individually, and in pair) in OpenCV using a printed chessboard pattern:

chessboard

Media

YouTube Video: https://www.youtube.com/watch?v=Qy8Ks7UTtrA

Full setup: Full Setup

Stereo Camera: camera

Bill of Materials

  • 1 x NVIDIA Jetson AGX Xavier
  • 2 x Raspberry Pi 3B+
  • 2 x Raspberry Pi Camera v2
  • 3D printer
  • Miscellaneous wire

Future Direction

With a higher budget, a more optimal version could be developed with an off the shelf stereo camera that can directly interface with the processing unit. Using a custom-built stereo camera makes the system a little bit buggy at times, and capturing images on separate computers slows the frame rate substantially.

There is also room for adding additional detection techniques. While I believe it's useful as is, it currently can't detect a cough or sneeze, for example, which can also contaminate surfaces.

About the Author

Nick A. Bild, MS