原创 caffe-Python-learning-lenet-02

import numpy as np import matplotlib.pyplot as plt %matplotlib inline plt.rcParams['figure.figsize'] = (10, 10) plt.rc

原创 Background Modeling and Foreground Detection -- GMM

Paper Improved Adaptive Gaussian Mixture Model for Background Subtraction 根據作者Zoran Zivkovic給出的代碼修改了一下 Abstract Backg

原创 Ubuntu 14.04 + Tensorflow 1.0

1. 創建一個 conda 環境 conda create -n tf python=2.7 或者 conda create -n tensorflow python=3.5.2 2. 激活這個conda環境並在裏面安裝TensorFl

原创 java通過jni調用opencv處理圖像

1. 建立java文件 public class getImageFeature { static{ System.loadLibrary("getImageFeatureDll"); } pu

原创 Learning to Track at 100 FPS with Deep Regression Networks

1. Github https://github.com/davheld/GOTURN Introduction GOTURN addresses the problem of single target tracking: given

原创 Opencv並行訪問圖像像素

四種Opencv的元素訪問方式時間對比 指針訪問方式和 at 方式沒有多大差別 最快的訪問方式是使用 最新的 forEach 可以調用多核並行 #include <opencv2/opencv.hpp> using names

原创 Fast R-CNN: Fast Region-based Convolutional Networks for object detection

1. Github https://github.com/rbgirshick/fast-rcnn#installation-sufficient-for-the-demo Introduction Fast R-CNN is a fas

原创 OpenCV3.2 編譯extra & Python模塊

Python 下用調用opencv KCF進行目標跟蹤 將OpenCV_Source\lib\python3\Release\cv2.cp35-win_amd64.pyd 文件更名爲: cv2.pyd,然後複製到 A

原创 OpenCV Samples ------ BackgroundSubtraction

1. Sample Description A program demonstrating the use and capabilities of a particular BackgroundSubtraction algo

原创 PCA & Adaptive Color Attributes for Real-Time Visual Tracking

PCA & Adaptive Color Attributes for Real-Time Visual Tracking

原创 Window環境MatConvNet安裝

CPU編譯 1. 下載MatConvNet http://www.vlfeat.org/matconvnet/quick/ 2. 解壓安裝包並編譯 cd matconvnet-1.0-beta24 run matlab/vl_compi

原创 Background Modeling and Foreground Detection -- SOBS

Paper A Self-Organizing Approach to Background Subtraction for Visual Surveillance Applications The SOBS algorithm: wh

原创 Face Detection with the Faster R-CNN (基於Faster RCNN的人臉檢測)

1. GitHub https://github.com/playerkk/face-py-faster-rcnn 2. Requirements Requirements: software Requirements for caffe

原创 KCF目標跟蹤算法筆記

這篇博客只是記錄下本人學習KCF算法數學推導的過程,方便以後查看,內容來源於論文和博客(見:Reference) Reference [2015 PAMI] High-Speed Tracking with

原创 基於MFC的對話框程序加啓動進度條

最終效果 開始啓動畫面 主對話框初始化完成之後(sleep模擬)顯示出主對話框 實現過程 以前寫的、包括網上很多添加啓動畫面都是阻塞型的,作用只是好看….. 針對比較大的程序,啓動過程很慢,所以爲了讓用戶等待程序初始化