原创 閱讀筆記(TIP2019)Local-Adaptive Image Alignment Based on Triangular Facet Approximation

DOI: 10.1109/TIP.2019.2949424 點贊 收藏 分享 文章舉報 Only柚 發佈了124 篇原創文章 · 獲贊 32 · 訪問量 7萬+ 私信

原创 閱讀筆記(SVIP2019)The image stitching algorithm based on aggregated star groups

#2019年11月26日 點贊 收藏 分享 文章舉報 Only柚 發佈了124 篇原創文章 · 獲贊 32 · 訪問量 7萬+ 私信

原创 算法導論·第八集:貪心算法-找零錢(Python版)

#【貪心算法】找零錢,使得零錢張數最少。 def change(): MONEY = (100,50,20,10,5,1,0.5,0.1) count = 0 x = float(input('Please en

原创 數值計算·第五集:線性規劃(CVXPY版)

PS:爲了計算一個優化問題,特地去學習cvxpy庫。確實好用,推薦大家! Linear program(線性規劃) 標準形式:-A linear program is an optimization problem with a line

原创 數值計算·第十集:混合-整數二次規劃(CVXPY版)

  Mixed-integer quadratic program(混合-整數二次規劃) 標準形式:-A mixed-integer quadratic program (MIQP) is an optimization problem

原创 數值計算·第九集:半正定規劃(CVXPY版)

Semidefinite program(半正定規劃) 標準形式:-A semidefinite program (SDP) is an optimization problem of the form: #Example -SDP i

原创 數值計算·第六集:最小二乘問題(CVXPY版)

Least-squares(最小二乘) 標準形式:-In a least-squares, or linear regression, problem, we have measurements and and seek a vect

原创 數值計算·第七集:二次規劃(CVXPY版)

Quadratic program(二次規劃) 標準形式:-A quadratic program is an optimization problem with a quadratic objective and affine equa

原创 數值計算·第八集:二階錐規劃(CVXPY版)

Second-order cone program(二階錐規劃) 標準形式:-A second-order cone program (SOCP) is an optimization problem of the form: #SOC

原创 pip install * 總提示網絡連接失敗的情況下。。。(更換國內源,即可!)

NOTE:清華源。(親測,可用!@2019年7月) 例如: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy pip install -i https://pypi

原创 蘭德係數(Rand Index)

NOTE: 1、一個小案例說明蘭德係數是如何怎麼計算的。很詳細! 2、關於蘭德係數的討論:https://stats.stackexchange.com/questions/89030/rand-index-calculation 注意:

原创 命令行添加Anaconda環境變量

在Linux 服務器下添加Anaconda環境變量: echo 'export PATH="~/anaconda3/bin:$PATH"' >> ~/.bashrc source ~/.bashrc

原创 BrokenPipeError: [Errno 32] Broken pipe

來自於·Pytorch官方文檔。 Windows系統下,報錯。 Linux系統下,一切正常。 PS:修改num_workers = 0,即可! 已經有網友做了解答:https://blog.csdn.net/qq_33666011/ar

原创 快速上手Makefile(或makefile)

<<請參考於此鏈接🔗 <<官方文檔GNU Make Manual Note:文件名必須是makefile或者Makefile。在終端輸入make執行命令。 1、一份主程序代碼(main.c)、三份函數代碼(getop.c、stack.c、

原创 LINK : fatal error LNK1104: cannot open file 'opencv_haartraining_engined.lib'

最有效的辦法:直接下載“opencv_haartraining_engined.lib”文件放入"../opencv/build/x86/v14/lib/"中