Skip to content

Instantly share code, notes, and snippets.

@razimgit
razimgit / Traffic Cone Detection OpenCV.ipynb
Created January 8, 2018 14:59
Traffic Cone Detection OpenCV
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import cv2
import json
import albumentations as A
from argparse import ArgumentParser
from pathlib import Path
id2title = {2956175: "van", 2956171: "car"}
transforms = A.Compose([A.PadIfNeeded(), A.Normalize()])