This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The gist shows how to compile latest development snaphost of DCMTK 3.6.1 | |
# in Ubuntu 14.04. The version of the dcmtk avaliable in ubuntu's repositiries | |
# is 3.6.0, which is from 2011. The gist also shows how to setup include | |
#and lib folders so thatwe can use them to write our own C++ programs | |
# using the develpment version. | |
# first need to install required packages | |
sudo apt-get install build-essential cmake libpng12-dev libtiff5-dev libxml2-dev libjpeg8-dev zlib1g-dev libwrap0-dev libssl-dev | |
# where to install DCMTK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* global Promise */ | |
var gulp = require('gulp'); | |
var paths = require('../config/gulp').paths; | |
var config = require('../config/environment'); | |
var request = require('request'); | |
var fs = require('fs'); | |
//generate map files in main build task with .pipe(gsourcemaps.write('map')) after min and concat | |
gulp.task('raygunApp', function () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// optimized to find a vertical barcode in an image | |
// inspired by http://www.pyimagesearch.com/2014/11/24/detecting-barcodes-images-python-opencv/ | |
using System; | |
using System.Drawing; | |
using System.Windows.Forms; | |
using OpenCvSharp; | |
using OpenCvSharp.Extensions; | |
namespace LocateBarcode |