原创 高斯核函數在圖像中的應用——模糊"(blur)濾鏡,讓圖像產生模糊效果

通常,圖像處理軟件會提供"模糊"(blur)濾鏡,使圖片產生模糊的效果(或者讓圖像起到平滑效果)。有很多種模糊算法,本文只介紹高斯模糊。 本文介紹"高斯模糊"的算法,你會看到這是一個非常簡單易懂的算法。本質上,它是一種數據平滑技術(dat

原创 變分自編碼器VAE:原來是這麼一回事 | 附開源代碼

https://www.cnblogs.com/xueqiuqiu/p/7605796.html(代碼pytorch) https://zhuanlan.zhihu.com/p/22464760 https://zhuanlan.zhih

原创 Conditional random fields as recurrent neural networks

https://blog.csdn.net/hjimce/article/details/50888915 https://blog.csdn.net/taigw/article/details/51794283?depth_1-utm_

原创 Python-copy()與deepcopy()區別

https://blog.csdn.net/qq_32907349/article/details/52190796?depth_1-utm_source=distribute.pc_relevant.none-task&utm_sour

原创 人體姿態估計的輸出的形式

def get_max_preds(batch_heatmaps): ''' get predictions from score maps heatsmaps numpy.ndarray([batch_size

原创 pytorch writer.add_scalar 與writer.add_scalars區別

接着解釋writer.add_scalar('scalar/test', np.random.rand(), epoch),這句代碼的作用就是,將我們所需要的數據保存在文件裏面供可視化使用。 這裏是Scalar類型,所以使用writer.

原创 【python】詳解collections模塊中OrderedDict的使用

很多人認爲python中的字典是無序的,因爲它是按照hash來存儲的,但是python中有個模塊collections(英文,收集、集合),裏面自帶了一個子類OrderedDict,實現了對字典對象中元素的排序。   # -*- cod

原创 人體姿態估計——from heatmap to coordinate

1、這是選取從熱圖變成座標的方法  def get_max_preds(batch_heatmaps): ''' get predictions from score maps heatsmaps numpy.n

原创 pytorch和Numpy的區別以及相互轉換

numpy中的ndarray轉化成pytorch中的tensor :         torch.from_numpy() pytorch中的tensor轉化成numpy中的ndarray :        numpy()     i

原创 python中的os.path.dirname(__file__)的使用

os.path.dirname(__file__)返回腳本的路徑,但是需要注意一下幾點: 1、必須是實際存在的.py文件,如果在命令行執行,則會引發異常NameError: name '__file__' is not defined 2

原创 numpy.tile()

numpy.tile()是個什麼函數呢,說白了,就是把數組沿各個方向複製 比如 a = np.array([0,1,2]),    np.tile(a,(2,1))就是把a先沿x軸(就這樣稱呼吧)複製1倍,即沒有複製,仍然是 [0,1,2

原创 hourglassnet網絡解析

https://blog.csdn.net/u013517182/article/details/99377536 https://www.sohu.com/a/360647840_717210 https://blog.csdn.net

原创 ubuntu環境下實現pytorch的tensorboadx的顯示

1、啓動tensorboadx的命令      linux 247服務器上輸入(tensorboard --logdir=/home/huoo/tensorflow-api-liulina/Object-Detector-App1/dat

原创 linux版 Matlab_R2014a 安裝快捷鍵筆記

轉自:https://www.jianshu.com/p/f0cefc737dda 首先 去 /usr/share/applications中隨便找一個系統圖標 可以拖動到桌面上 比如Gvim 如果桌面此時出現了gvim圖標 而不是"複製

原创 activate learning(主動學習)

https://zhuanlan.zhihu.com/p/38029108 https://www.jianshu.com/p/42801f031cfa http://active-learning.net/(有關主動學習網址) http