{"id":21466625,"url":"https://github.com/abhiroy96/visioncomputer","last_synced_at":"2026-06-19T18:33:21.242Z","repository":{"id":97394630,"uuid":"164186319","full_name":"AbhiRoy96/visionComputer","owner":"AbhiRoy96","description":"This repository contains notebooks, images and code used for exploring and building license-plate detection solutions. It includes data examples, training/visualization assets, and experiments for detecting and localizing license plates using classical computer-vision and/or deep-learning approaches.","archived":false,"fork":false,"pushed_at":"2025-12-04T07:59:46.000Z","size":918,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-07T14:21:38.832Z","etag":null,"topics":["computer-vision","deep-learning","image-processing","jupyter-notebook","object-detection","opencv","python","tensorflow"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AbhiRoy96.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-05T05:51:08.000Z","updated_at":"2025-12-04T08:01:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"839cbfd1-57f9-429e-9753-82187438eb46","html_url":"https://github.com/AbhiRoy96/visionComputer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AbhiRoy96/visionComputer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbhiRoy96%2FvisionComputer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbhiRoy96%2FvisionComputer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbhiRoy96%2FvisionComputer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbhiRoy96%2FvisionComputer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AbhiRoy96","download_url":"https://codeload.github.com/AbhiRoy96/visionComputer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AbhiRoy96%2FvisionComputer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34544404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-19T02:00:06.005Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["computer-vision","deep-learning","image-processing","jupyter-notebook","object-detection","opencv","python","tensorflow"],"created_at":"2024-11-23T08:14:46.478Z","updated_at":"2026-06-19T18:33:21.237Z","avatar_url":"https://github.com/AbhiRoy96.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# visionComputer\nLicense-plate detection examples and experiments (Jupyter notebooks)\n\nThis repository contains notebooks, images and code used for exploring and building license-plate detection solutions. It includes data examples, training/visualization assets, and experiments for detecting and localizing license plates using classical computer-vision and/or deep-learning approaches.\n\nDemo\n![Training sample](https://github.com/AbhiRoy96/visionComputer/blob/master/train.png)\n\nRepository layout\n- notebooks/ or *.ipynb — Jupyter notebooks with experiments, preprocessing, training and evaluation (if present)\n- data/ — sample images and dataset (if present)\n- models/ — saved model weights or checkpoints (if present)\n- scripts/ — helper scripts for training, inference or dataset preparation\n- train.png — example training / visualization image\n\nFeatures\n- Example notebook(s) demonstrating license plate detection pipelines\n- Data loading and preprocessing utilities\n- Training and inference examples (notebook-based)\n- Visualizations of detection results\n\nGetting started\n\n1. Clone the repository\n   git clone https://github.com/AbhiRoy96/visionComputer.git\n   cd visionComputer\n\n2. Create and activate a Python virtual environment (recommended)\n   python3 -m venv .venv\n   source .venv/bin/activate  # macOS / Linux\n   .venv\\Scripts\\activate     # Windows\n\n3. Install dependencies\n   If a requirements.txt exists:\n   pip install -r requirements.txt\n\n   If not, start with these commonly used packages:\n   pip install jupyter numpy matplotlib opencv-python scikit-image scikit-learn\n\n   Add a deep-learning framework if needed:\n   - TensorFlow: pip install tensorflow\n   - PyTorch: pip install torch torchvision torchaudio\n\n4. Start Jupyter\n   jupyter notebook\n   or\n   jupyter lab\n\nUsage\n\n- Open the notebooks in the repo (files ending with .ipynb) and run the cells to reproduce preprocessing, training and evaluation steps.\n- If there are scripts for training or inference, run them from the command line (example):\n  python scripts/train.py --config configs/train_config.yaml\n  python scripts/infer.py --model models/latest.pth --input data/test.jpg\n\nNotes on datasets and models\n- If you used an external dataset (OpenALPR, SSIG, private dataset, etc.), provide dataset download/preparation instructions here.\n- If models are large, consider adding instructions to download model weights or store them in a releases section.\n\nTips and troubleshooting\n- Ensure OpenCV is installed for image I/O and visualization.\n- Use a GPU-enabled environment for faster training if using deep learning frameworks.\n- If notebooks fail because of missing packages, install them with pip or conda (look at the notebook import cells to see required libraries).\n\nExamples of experiment steps (notebook workflow)\n1. Explore sample images and annotations (visualize train.png)\n2. Preprocess images (resize, normalize, data augmentation)\n3. Train a detector or classification model (classical CV or CNN-based detector)\n4. Evaluate on validation set and visualize predictions\n5. Save best model and run inference on test images\n\nContributing\n- Open issues for bugs or feature requests\n- Fork the repo, create a branch, submit a pull request with clear description and tests (if applicable)\n\nLicense\nNo license specified. If you want this repo to be reusable, add a license (MIT, Apache-2.0, etc.). Let me know which license you prefer and I can include it and add a LICENSE file.\n\nContact\nOwner: @AbhiRoy96 (https://github.com/AbhiRoy96)\n\nSuggested repository topics / tags\n- python\n- jupyter-notebook\n- computer-vision\n- license-plate-detection\n- opencv\n- deep-learning\n- object-detection\n- image-processing\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabhiroy96%2Fvisioncomputer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabhiroy96%2Fvisioncomputer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabhiroy96%2Fvisioncomputer/lists"}