原创 error: AttributeError: module 'tensorflow.python.keras.backend' has no attribute 'get_graph'

TensorFlow Keras運行錯誤: AttributeError: module 'tensorflow.python.keras.backend' has no attribute 'get_graph' 原因:安裝的tenso

原创 DLP LightCrafter4500投影圖像步驟整理(二)------投影格雷碼圖案

接上一篇文章https://blog.csdn.net/stq054188/article/details/106794690繼續,本次將投影格雷碼圖案,步驟如下: 一、生成格雷碼投影圖片,生成方法可以使用OpenCV自帶的structL

原创 DLP LightCrafter4500投影圖像步驟整理(一)------投影默認圖像

如下所述步驟均爲個人整理(非官方,可能有錯),只是爲了方便後續查閱。 詳細步驟如下: 一、連接DLP電源,DLP數據線連接電腦USB端口,使用軟件及版本如下:        正常連接後connected指示燈爲綠色,Init Done指

原创 DLP LightCrafter4500投影圖像步驟整理(三)------投影格雷碼圖案序列

接上篇文章https://blog.csdn.net/stq054188/article/details/106800694,本文簡單說明投影格雷碼pattern序列的步驟: 一、準備好需要投影的格雷碼圖片(bmp格式,分辨率912 *

原创 TensorFlow深度學習視頻教程基礎入門到實戰 圖像分類 目標檢測TensorFlow Object Detection API

TensorFlow基礎入門與實戰教程,適合Python C++ C#視覺開發者,基於TensorFlow深度學習框架,涉及TensorFlow基礎、圖像分類、目標檢測訓練與測試以及後期在C++和C#的使用。SSD,Faster RCNN

原创 Darknet YoloV3/V4中cfg文件參數說明和理解

具體解釋可以參考下面這篇文章,寫的很不錯,這裏做備份方便後續查閱。 https://blog.csdn.net/phinoo/article/details/83022101

原创 三維點雲數據pcd與ply格式相互轉換/點雲合併

PCL配置與下載參考:https://blog.csdn.net/stq054188/article/details/106408641 ① ply轉pcd #include <iostream> #include <pcl/io/pc

原创 PCL 1.8.0安裝與配置VS2015 windows10

① 下載與安裝Point Cloud Library 1.8.0--》PCL  http://unanancyowen.com/en/pcl18/ ② 配置 總共這麼多lib pcl_common_debug.lib pcl_fe

原创 三維點雲顯示軟件/方法(xyz, pcd, ply格式)

① .xyz格式的三維點雲一般我用OpenCV生成,顯示使用VTK庫,需要自己編譯,然後用OpenCV viz模塊顯示,介紹https://blog.csdn.net/stq054188/article/details/104799702

原创 Gerber file Gerber文件解析 .gbx光繪文件讀取繪製 C++ Python OpenCV

最近在研究光繪文件gerber file, .gbx文件的讀取繪製,效果如下,需要合作的可以加我Q3252314061

原创 Darknet 訓練YoloV3數據集變換擴充與參數配置說明

Darknet 訓練YoloV3數據集變換擴充與參數配置說明,具體參考如下鏈接: https://blog.csdn.net/phinoo/article/details/83022101 https://blog.csdn.net/ti

原创 Yolo v4 Darknet編譯(Windows10 + VS2015 + OpenCV4.2)

Darknet github地址:https://github.com/AlexeyAB/darknet 最近剛更新了Yolo v4,對比Yolo v3有很大提升,所以迫不及待編譯來試試。 編譯與測試步驟如下: ① 下載darknet-

原创 C++字符串常用函數操作

1. C風格字符串常用函數: #include <iostream> #include <cstring> using namespace std; int main () { char str1[11] = "Hell

原创 使用sprintf格式化字符串出錯:error C4996: 'sprintf': This function or variable may be unsafe.

本來打算一次讀取10張圖片,代碼如下: for (int i = 0; i < 10; i++) { char filePath[20]; sprintf(filePath, "./imgs/%d.jpg", i); cout <