原创 關於圖像壓縮實驗

圖像壓縮實驗報告 一、背景介紹【1】       圖像壓縮是數據壓縮技術在數字圖像上的應用,目的是減少圖像數據中的冗餘信息,從而用更加高效的格式存儲和傳輸數據。而圖像壓縮的方法可以是有損壓縮或無損壓縮,常見的應用有gif和tiff格式等。

原创 關於圖像抖動實驗

一、背景介紹      在過去十年的計算機發展歷史中,我們常常使用的是R、G、B各8位的24位真彩色圖像。但如果要求將這種圖像在色彩空間有限的顯示屏上顯示出來,或在打印機上打印出來,往往因爲它們的低分辨率使得一張清晰的圖像在顯示出來之後變

原创 ICCV 2015 Multiple Hypothesis Tracking Revisited 閱讀筆記

原文鏈接、代碼以及在MOT Challenge上的成績:https://motchallenge.net/tracker/MHT_DAM_17 摘要: 本文回顧了經典的基於tracking-by-detection框架的多假設跟

原创 [LeetCode]295. Find Median from Data Stream

Description: Median is the middle value in an ordered integer list. If the size of the list is even, there is no midd

原创 《Effective C++》讀書筆記第六章——繼承與面向對象設計(Inheritance and Object-Oriented Design)

條款32:確定你的public繼承塑模出is-a關係 Make sure public inheritance models “is-a” “public繼承”意味着is-a。適用於base classes身上的每一件事情一定也

原创 《Effective C++》讀書筆記第四章——設計與聲明(Designs and Declarations)

條款18:讓接口容易被正確使用,不易被誤用 (Make interfaces easy to use correctly and hard to use incorrectly) 好的接口很容易被正確使用,不容易被誤用。 “促進

原创 [LeetCode]679. 24 Game

Problem: You have 4 cards each containing a number from 1 to 9. You need to judge whether they could operated through

原创 [LeetCode]322. Coin Change

Description: You are given coins of different denominations and a total amount of money amount. Write a function to c

原创 CVPR 2015 In Defense of Color-based Model-free Tracking 閱讀筆記

原文下載地址: https://www.tugraz.at/fileadmin/user_upload/Institute/ICG/Documents/lrs/pubs/possegger_cvpr15.pdf C++代碼下載

原创 “基於顏色屬性直方圖的尺度目標跟蹤算法研究”閱讀筆記

基於顏色屬性直方圖的尺度目標跟蹤算法研究 作者 畢篤彥 , 庫濤 , 查宇飛 , 張立朝 , 楊源 出版源 《電子與信息學報》 , 2016 , 38 (5) :1099-1106 這篇文章的創新點有三點: 1)特徵

原创 [LeetCode][105,106] Construct Binary Tree from Inorder and (Post/Pre)order Traversal

Description: Given (pre/post)order and inorder traversal of a tree, construct the binary tree. Note: You may assume

原创 [LeetCode]395. Longest Substring with At Least K Repeating Characters

Description: Find the length of the longest substring T of a given string (consists of lowercase letters only) such t

原创 [LeetCode]123. Best Time to Buy and Sell Stock III

Description: Say you have an array for which the ith element is the price of a given stock on day i. Design an algor

原创 《Effective C++》讀書筆記第五章——實現(Implementations)

條款26:儘可能延後變量定義式的出現時間 (Postpone variable definitions as long as possible) 儘可能延後變量定義式的出現。這樣做可增加程序的清晰度並改善程序效率。 eg:你不只

原创 《Effective C++》讀書筆記第三章——資源管理(Resource Management)

條款13:以對象管理資源 (Use objects to manage resources) 獲得資源後立刻放進管理對象內。 實際上“以對象管理資源”的觀念常被稱爲“資源取得時機便是初始化時機”(Resource Acquisi