Download Latest Version asynchwave20160828.7z (2.5 MB)
Email in envelope

Get an email when there's a new version of Asynchwave

Home
Name Modified Size InfoDownloads / Week
ReadMe.txt 2016-11-24 1.5 kB
asynchwave20160828.7z 2016-11-24 2.5 MB
Overview of RunTree framework image analysis library.txt 2016-11-21 4.9 kB
Totals: 3 Items   2.5 MB 0
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// Reference to the copyright notice and the http link http://www.virtuar.com is mandatory.
// Designer (C)2013-2016 Igor Polkovnikov  http://www.virtuar.com

========================================================================
    CONSOLE APPLICATION : asynchwave Project Overview
========================================================================

Created in MS Visual Studio 2012

/////////////////////////////////////////////////////////////////////////////
Build for win32
Intended to run under the debugger. Release version works.
Requires OpenCV to read files. Originally built with OpenCV 2.4.1.
Change OpenCV settings to yours to compile and run.



11:29 2016-11-24
Bug fix:
The code related to _op_nail_down() in test_Algobase() crashed sometimes when the non-allocated memery was dereferenced. One should be careful with the operations which dereference memory outside of a pixel.
There is no fix in the code op _op_nail_down() or the function doop_c(). They are correct. One should be careful to pass correct arguments.
This is the corrected code:
	Img		i01	(i00,176, true); 
	_.doop_c (	img2.sr,	i01.sr,		_op_nail_down()  );	
i01 type is changed from Img_base to Img and i01.sr is used which effectivelly provides only allocated memory to _op_nail_down().
Source: ReadMe.txt, updated 2016-11-24