Skip to main content

Posts

Set up Zotero Attachment File Synchronisation with Google Drive

Background I had a ton of downloaded PDF papers. These files were unorganised and kept in a folder in my Google Drive. I learned about Zotero from a colleague and started using it. I was very impressed at the begining for its convenience and ease of use. Just drag a PDF file into Zotero , and select an option to retreive metadata from the PDF and viola! A proper citation record is ready! I can export it to bibtex format in order to use the citation in Latex, or include it in MS Word in my preferred citation style. The most exciting feature of Zotero for me was the ability to take notes on a paper and keep them organised. I can search for a paper/topic, and open a relevant paper PDF from zotero. I can write comments on that PDF or take notes and everything will be synced to the server. However, soon I began to notice some issues. Zotero didn't use the downloaded PDF files, but included a copy of them instead. These copies were being synced to the Zotero server and soon filled my 3...

Build and Install OpenCV for Visual Studio 2015

Recently, I did a fresh installation of Windows 10 on my laptop and had to reinstall OpenCV. Since I use OpenCV version 3.0.0 in my office and have the source available, I decided to build it instead of downloading pre-compiled binaries. In this article, I will describe how I build OpenCV 3.0.0 using CMake and Visual Studio and set up my development environment. Softwares OpenCV 3.0.0 Visual Studio 2015 Community Edition CMake 3.9.3 Description I put the OpenCV source (extracted) in C:\opencv\sources directory. The reason is simply to make it identical to my office PC. Other uses of directories/names in this article is also for the same purpose. I already had Visual Studio 2015 installed. I downloaded and installed CMake and opened the graphical UI application CMake (cmake-gui) from the Start menu. In CMake, I selected the source folder C:\opencv\sources through Browse Source button. I also selected C:\opencv\sources\build as the directory for building binaries. Then I pr...