Skip to content

StanislavJochman/Microscope-web-viewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Desktop application for showing image from microscope camera

This is a compact application designed to connect to a microscope camera, offering the ability to flip the captured video in real-time. Additionally, it allows users to capture and save images, as well as convert the video feed to grayscale for enhanced visual analysis.

Running the application

docker run -d -p 3000:3000 stanislavjochman/microscope-camera:v1.0

Custom docker-compose.yml

---
services:
  webserver:
    image: stanislavjochman/microscope-camera:v1.0
    restart: unless-stopped
    ports:
      - "80:3000"