Skip to content

Instantly share code, notes, and snippets.

View anshkumar's full-sized avatar
🎯
Focusing

vedanshu anshkumar

🎯
Focusing
View GitHub Profile
@anshkumar
anshkumar / aes256.cpp
Created January 2, 2023 09:21 — forked from edwardstock/aes256.cpp
C++ OpenSSL AES256 encryption
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <memory>
#include <stdexcept>
#include <cstring>
#include <openssl/aes.h>
#include <openssl/err.h>
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@anshkumar
anshkumar / video_udp.py
Created August 12, 2020 14:23 — forked from patrickelectric/video_udp.py
Get video from gstreamer udp with python and visualize with OpenCV
#!/usr/bin/env python
import cv2
import gi
import numpy as np
gi.require_version('Gst', '1.0')
from gi.repository import Gst
name: "RESNET_Mask-RCNN"
input: "data"
input_dim: 1
input_dim: 3
input_dim: 224
input_dim: 224
input: "rois"
input_dim: 1 # to be changed on-the-fly to num ROIs
@anshkumar
anshkumar / faster-rcnn-vgg16-test.prototxt
Last active April 23, 2020 01:15 — forked from Immiora/faster-rcnn-vgg16-test.prototxt
Faster R-CNN for visualizing with Netscope
name: "Faster R-CNN vgg16"
input: "data"
input_shape {
dim: 1
dim: 3
dim: 224
dim: 224
}