原创 paln

學習目標:C/C++、操作系統、Linux驅動 待安排 《tensorflow實戰》VGGNet 《tensorflow實戰》AlexNet CS231n:方向傳播 學習tf-slim 怎麼進行遷移訓練 2019.11

原创 AI視覺學習雜亂筆記

進行推理時,GPU顯存佔滿,但是GPU利用率不高 進行分類推理時,發現GPU的顯存佔滿,但是佔用率最多到23%,不能達到100%。原因在於我代碼實現的方法不對:喂入神經網絡的數據是一張一張的。而要想GPU利用率高,就要用tf.co

原创 VideoBasedReconstruction筆記

VideoBasedReconstruction overview We first estimate an initial body shape and 3D pose at each frame by fitting the

原创 OpenCV的安裝、配置、測試

安裝配置請看這裏 C語言API測試OpenCV #include "opencv2/highgui/highgui_c.h" void main(){ IplImage *img = cvLoadImage("1.j

原创 新版C++學習筆記

2. for循環中的自增量及後增量 for語句中判斷語句包含自增量及後增量 #include <iostream> using namespace std; int main() { for (int i = 0; (++i

原创 配置OPENCV中出現的指針越位問題

原因:圖片路徑 //一段簡單的OPENCV測試程序 #include <iostream> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highg

原创 “IplImage”: 將此類型用作表達式非法

代碼片斷: if (y_start + height > img_pryamids[i]->height) height = img_pryamids[i]->height - y_start; IplImage* img

原创 數據結構學習筆記

前序、中序、後序遍歷 前序遍歷:根-左-右,ABDECF 中序遍歷:左-根-右,DBEAFC 後序遍歷:左-右-根,DEBFCA

原创 通過Xshell,在本地電腦用tensorboard查看跑在服務器上的訓練

其中,偵聽端口,可以自己選一個,我這裏填16006,目標端口也自己選一個,或者自己填。 在XShell運行tensorboard --logdir path/to/your/logs/ --port=6006 接着,在本機瀏覽器

原创 OpenDR學習筆記

OpenDR是什麼? Open Differentiable Renderer, can be used for rendering and optimisation to image evidence. looking for

原创 DynamicFusion: Reconstruction and Tracking of Non-rigid Scenes in Real-Time 的理解

2 DynamicFusion Overview three core algorithmic components: 1.Estimation of the volumetric model-to-frame warp field

原创 OpenCV訪問像素點的灰度值

單通道圖片訪問像素點灰度值 img_1.ptr<uchar>(i)[j]; 多通道圖片訪問像素點灰度值 img_1.ptr<uchar>(i)[j*3]; //第i行j列的B通道其灰度值: img_1.ptr<ucha

原创 奇異值分解(SVD)原理

關於SVD可以參考這篇文章。寫得很好。 ICP(即指匹配好的兩組3D點間的運動估計問題)中,有兩種求解方式:線性代數求解(主要爲SVD)和非線性優化方式求解。

原创 c++實現高斯牛頓法(Gauss-Newton method)原理

#include <iostream> #include <opencv2/opencv.hpp> #include <Eigen/Core> #include <Eigen/Dense> using namespace std;

原创 在運行Pangolin時提示錯誤:Pangolin X11: Unable to retrieve framebuffer options

在運行Pangolin時提示以下錯誤: terminate called after throwing an instance of 'std::runtime_error' what(): Pangolin X11: Unab