Skip to content

Instantly share code, notes, and snippets.

View cuongtvee's full-sized avatar

Cuong Truong Van cuongtvee

  • University of Information Technology
  • Vietnam
View GitHub Profile
@cuongtvee
cuongtvee / noiquy_cuongtv.md
Created September 26, 2025 02:30
Nội Quy Thực Hành Trong Lớp

📘 Nội Quy Thực Hành Trong Lớp

1. Thời gian và chuẩn bị

  • Sinh viên đi học đúng giờ, có mặt trước khi buổi thực hành bắt đầu.
  • Chuẩn bị bài lab trước ở nhà.

    ⚠️ Lưu ý: Sinh viên không chuẩn bị sẽ bị mời ra khỏi lớp.

2. Thái độ học tập

  • Nghiêm túc làm việc trong giờ thực hành.
  • Không sao chép hoặc lấy bài của bạn khác.
@cuongtvee
cuongtvee / IC-Design-flow.md
Created September 24, 2025 00:03
IC Designflow

Quy trình thiết kế vi mạch số (Digital IC Design Flow)

1. Đặc tả (Specification)

  • Xác định chức năng mạch, đầu vào/đầu ra.
  • Yêu cầu về hiệu năng, công suất, chi phí.

2. Thiết kế kiến trúc (Architecture Design)

  • Chia hệ thống thành các khối chức năng.
  • Xác định luồng dữ liệu và điều khiển.
  • Định nghĩa pipeline, bus, bộ nhớ, ngoại vi.
@cuongtvee
cuongtvee / huong-dan-nop-bai-tap.MD
Last active September 13, 2025 03:02
Hướng dẫn nộp bài tập lớp thầy Cương

📌 Hướng Dẫn Nộp Bài Tập

1. Yêu cầu khi làm bài

  • Sinh viên làm bài trực tiếp ra giấy (không được đánh máy).
  • Trên bài làm phải ghi rõ ràng:
    • Họ và tên
    • MSSV
    • Số thứ tự trong danh sách lớp

@cuongtvee
cuongtvee / cuongtv-do-an-template.MD
Last active September 13, 2025 02:41
Biểu Mẫu Báo Cáo Đồ Án

📑 Mẫu Báo Cáo Tiến Độ Tuần – Đồ án môn học

Tên nhóm: …………………………………
MSSV các thành viên: …………………………………
Tuần báo cáo: ……… (Từ ngày …/…/2025 đến …/…/2025)


1. Công việc đã thực hiện trong tuần

  • Việc 1: ………………………………………

Guide to Retrieve Camera Streaming URLs

This guide outlines how to call the necessary API to retrieve a list of camera streams, including their main and sub-stream URLs.

Steps

  1. Retrieve the base RTSP URL.
  2. Define the query parameters (token and id).
  3. Append the query parameters to the RTSP URL.
  4. Final RTSP URL with the required query parameters.
@cuongtvee
cuongtvee / README.md
Created May 11, 2022 04:27 — forked from corenel/README.md
Install NVDEC and NVENC as GStreamer plugins

Install NVDEC and NVENC as GStreamer plugins

Environment

  • Ubuntu 18.04
  • NVIDIA driver 460.32.03
  • NVIDIA Video Codec SDK 11.0.10
  • GStreamer 1.14.5

Steps

@cuongtvee
cuongtvee / cuda_11.2_installation_on_Ubuntu_20.04
Created January 22, 2022 17:40 — forked from Mahedi-61/cuda_11.8_installation_on_Ubuntu_22.04
Instructions for CUDA v11.2 and cuDNN 8.1 installation on Ubuntu 20.04 for Pytorch 1.8 & Tensorflow 2.7.0
#!/bin/bash
### steps ####
# verify the system has a cuda-capable gpu
# download and install the nvidia cuda toolkit and cudnn
# setup environmental variables
# verify the installation
###
### to verify your gpu is cuda enable check
@cuongtvee
cuongtvee / dlib_plus_osm.md
Created November 22, 2017 08:09 — forked from iandees/dlib_plus_osm.md
Detecting Road Signs in Mapillary Images with dlib C++

image

I've been interested in computer vision for a long time, but I haven't had any free time to make any progress until this holiday season. Over Christmas and the New Years I experimented with various methodologies in OpenCV to detect road signs and other objects of interest to OpenStreetMap. After some failed experiments with thresholding and feature detection, the excellent /r/computervision suggested using the dlib C++ module because it has more consistently-good documentation and the pre-built tools are faster.

After a day or two figuring out how to compile the examples, I finally made some progress:

Compiling dlib C++ on a Mac with Homebrew

  1. Clone dlib from Github to your local machine:
@cuongtvee
cuongtvee / gstreamer-build.sh
Created August 28, 2017 08:19 — forked from Swap-File/gstreamer-build.sh
Install & build gstreamer from git
#!/bin/bash --debugger
export MAKEFLAGS="-j 1"
set -e
BRANCH="1.10"
if grep -q BCM270 /proc/cpuinfo; then
echo "RPI BUILD!"
RPI="1"
fi