User Jon Cage - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T19:09:57Zhttp://stackoverflow.com/feeds/user/15369http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1825857/how-much-of-numpy-and-scipy-is-in-c/1825950#18259505Answer by Jon Cage for How much of NumPy and SciPy is in C?Jon Cage2009-12-01T12:39:25Z2009-12-01T12:58:14Z<ol>
<li>I would question any benchmark which doesn't show the source for each implementation (or did I miss something)? It's entirely possible that either or both of those solutions are coded badly which would result in an unfair appraisal of either or both language's perfoemance.</li>
<li>As far as I know, the vast majority of NumPy and SciPy is written in C and wrapped in Python for ease of use.</li>
<li>It probably depends what you're doing in any of those languages as to how much overhead there is for a particular application.</li>
</ol>
<p>I've used Python for data processing and analysis for a couple of years now so I would say it's certainly fit for purpose.</p>
<p>What are you trying to achieve at the end of the day? If you want a fast way to develop readable code, Python is an excellent option and certainly fast enough for a first stab at whatever it is you're trying to solve.</p>
<p>Why not have a bash at each for a small subset of your problem and benchmark the results in terms of development time and run time? Then you can make an objective decision based on some relevent data ...or at least that's what I'd do :-)</p>
<p><strong>[Edit]</strong> Oops, now I see the source. As others have pointed out though, it's not using the NumPy/SciPy libraries so those benchmarks are not going to help you make a decision.</p>
http://stackoverflow.com/questions/897796/how-do-i-open-an-already-opened-file-with-a-net-streamreader1How do I open an already opened file with a .net StreamReader?Jon Cage2009-05-22T13:19:33Z2009-11-30T19:38:37Z
<p>I have some .csv files which I'm using as part of a test bench. I can open them and read them without any problems <em>unless</em> I've already got the file open in Excel in which case I get an <code>IOException</code>:</p>
<blockquote>
<p>System.IO.IOException : The process cannot access the file 'TestData.csv' because it is being used by another process.</p>
</blockquote>
<p>This is a snippet from the test bench:</p>
<pre><code>using (CsvReader csv = new CsvReader(new StreamReader(new FileStream(fullFilePath, FileMode.Open, FileAccess.Read)), false))
{
// Process the file
}
</code></pre>
<p>Is this a limitation of StreamReader? I can open the file in other applications (Notepad++ for example) so it can't be an O/S problem. Maybe I need to use some other class? If anyone knows how I can get round this (aside from closing excel!) I'd be very grateful.</p>
http://stackoverflow.com/questions/1769575/how-to-share-constant-values-in-net-namespaces0How to share constant values in .net namespaces?Jon Cage2009-11-20T10:23:28Z2009-11-20T10:40:07Z
<p>I'm trying to port some code into .net which has a load of #define'd values e.g.</p>
<pre><code>#define MY_CONSTANT (512)
#define MY_VERSION_STRING "v42.2"
</code></pre>
<p>When I import a cli library the #define's are lost. Is there a way of defining constants in the scope of a namespace. I was thinking something like this:</p>
<pre><code>namespace MyNamespace
{
const int MY_CONSTANT = 512;
const String^ MY_VERSION_STRING = "v42.2";
}
</code></pre>
<p>So in future I could refer to that as:</p>
<pre><code>int myVar = MyNamespace::MY_CONSTANT;
String^ myVar = MyNamespace::MY_VERSION_STRING;
</code></pre>
<p><strong>[Edit]</strong> Some of the constants are strings so an enum won't solve the general case.</p>
<p><strong>[Edit2]</strong> I'm using C++/CLI here and right now interoperability with other .net languages is not a priority. That said, if there's a more .net-like way of solving this (i.e. standard practice) I'd rather go with that.</p>
http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/115654#11565438Answer by Jon Cage for Is Python any good for GUI development?Jon Cage2008-09-22T15:45:03Z2009-11-20T10:18:31Z<p>I've made numerous UI's in <a href="http://wxpython.org/" rel="nofollow">wxPython</a> and would highly recommend it. I used to build in VisualC++/MFC then discovered wxWidgets/C++ and finally moved onto wxPython. I find I'm able to get working GUIs in no time at all with wxPython compared to the other methods and with almost no effort, the same source works works on Linux and the Mac* (sometimes you need some tweaks for visual anomolies).</p>
<p>*I generally develop under Windows in case you hadn't guessed.</p>
<p><strong>[Edit]</strong> There's a tool (<a href="http://www.wxdesigner-software.de/" rel="nofollow">wxDesigner</a>) you can use to generate the layout for you or alternatively, you can play with it programmatically. Either way, layout under wxWidgets is done using <a href="http://docs.wxwidgets.org/2.8.6/wx_sizeroverview.html" rel="nofollow">Sizers</a>. They're quite a powerful way of laying out a GUI and once set up correctly, will automatically resize your controls appropriately for you.</p>
<p><strong>[Edit2]</strong> There's <a href="http://neume.sourceforge.net/sizerdemo/" rel="nofollow">a nice little tutorial on sourceforge</a> with some good examples of what you can do with sizers.</p>
http://stackoverflow.com/questions/759854/how-do-i-run-nunit-in-debug-mode-from-visual-studio3How do I run NUnit in debug mode from Visual Studio?Jon Cage2009-04-17T10:11:47Z2009-10-29T15:05:10Z
<p>I've recently been building a test framework for a bit of C# I've been working on. I have NUnit set up and a new project within my workspace to test the component. All works well if I load up my unit tests from Nunit (v2.4), but I've got to the point where it would be really useful to run in debug mode and set some break points.</p>
<p>I've tried the suggestions from several guides which all suggest changing the 'Debug' properties of the test project:</p>
<pre><code>Start external program: C:\Program Files\NUnit 2.4.8\bin\nunit-console.exe
Command line arguments: /assembly: <full-path-to-solution>\TestDSP\bin\Debug\TestDSP.dll
</code></pre>
<p>I'm using the console version there, but have tried the calling the GUI as well. Both give me the same error when I try and start debugging:</p>
<pre><code>Cannot start test project 'TestDSP' because the project does not contain any tests.
</code></pre>
<p>Is this because I normally load \DSP.nunit into the Nunit GUI and that's where the tests are held?</p>
<p>I'm beginning to think the problem may be that VS wants to run it's own test framework and that's why it's failing to find the NUnit tests?</p>
<p><strong>[Edit]</strong> To those asking about test fixtures, one of my .cs files in the TestDSP project looks roughly like this:</p>
<pre><code>namespace Some.TestNamespace
{
// Testing framework includes
using NUnit.Framework;
[TestFixture]
public class FirFilterTest
{
/// <summary>
/// Tests that a FirFilter can be created
/// </summary>
[Test]
public void Test01_ConstructorTest()
{
...some tests...
}
}
}
</code></pre>
<p>...I'm pretty new to C# and the Nunit test framework so it's entirely possible I've missed some crucial bit of information ;-)</p>
<p><strong>[FINAL SOLUTION]</strong> The big problem was the project I'd used. If you pick:</p>
<pre><code>Other Languages->Visual C#->Test->Test Project
</code></pre>
<p>...when you're choosing the project type, Visual Studio will try and use it's own testing framework as far as I can tell. You should pick a normal c# class library project instead and then the instructions in my selected answer will work.</p>
http://stackoverflow.com/questions/1636032/how-to-launch-an-email-client-to-report-errors0How to launch an email client to report errorsJon Cage2009-10-28T09:14:27Z2009-10-28T09:26:38Z
<p>I have a C++/CLI (.net) application which I've wrapped in a try-catch block. This is production code so if there's anything that I've missed, I want to catch it and save the report. I've already got something like this which logs errors to uniquely timestamped files:</p>
<pre><code>try
{
Application::Run( mf );
}
catch( System::Exception^ e )
{
System::Exception^ exceptionRecursor = e;
message = String::Format("ERROR: Uncaught exception encountered!\n\n");
while( exceptionRecursor )
{
message += "Exception:\n "+exceptionRecursor->Message+"\n";
message += "Exception type:\n "+exceptionRecursor->GetType()->ToString()+"\n";
message += "Source:\n "+exceptionRecursor->Source+"\n";
message += "Stack track:\n"+exceptionRecursor->StackTrace+"\n\n";
exceptionRecursor = exceptionRecursor->InnerException;
}
message = message->Replace("\r", "");
marshal_context marshalContext;
const char* errorString = marshalContext.marshal_as<const char*>(message);
write_exeption_to_file(errorString);
MessageBox::Show(message);
throw e;
}
</code></pre>
<p>...but now I'd like to add something so that the software gives the option to email the error report. What's the best way to go about this? A bit of googling suggests the <a href="http://msdn.microsoft.com/en-us/library/system.net.mail.aspx" rel="nofollow">System.Net.Mail</a> namespace may be of use, but it looks like you need to know a relay for that to work? Would it be better to try and detect and launch the users email client?</p>
http://stackoverflow.com/questions/1570917/extracting-c-c-function-prototypes/1570960#15709602Answer by Jon Cage for Extracting C / C++ function prototypesJon Cage2009-10-15T08:11:40Z2009-10-15T08:11:40Z<p>If you format your comments suitably, you could try <a href="http://www.stack.nl/~dimitri/doxygen/" rel="nofollow">DOxygen</a>. In fact, if you've not tried it before I'd recommend giving it a go anyway - it will produce inheritance graphs as well as full member function lists and descriptions (from your comments).</p>
http://stackoverflow.com/questions/1565142/what-is-the-simplest-way-to-display-and-change-an-image-resource-on-a-wpf-dialo0What is the simplest way to display (and change) an image resource on a WPF dialog (using C++/CLI)?Jon Cage2009-10-14T09:16:28Z2009-10-14T13:21:24Z
<p>I have a C++/CLI GUI application and I want to display an image as a visual aid for the user to see what step in a procedure they're at. This image will need to be changed each time the user selects the new step.</p>
<p>Currently I'm using a picture box and have an image loaded from the disk at run time. So there are a few things I need to know here:</p>
<ol>
<li>Is a picture box the best thing to use for this purpose or is there another control that would better suit?</li>
<li>How do embed the images in the executable and load them from there instead of a file that exists on disk.</li>
<li>How do I load a new image (I'm guessing that this will be fairly obvois if I can crack point 2)?</li>
</ol>
<p>I've seen a few answers which relate to C# but I've not seen anything which looks like it translates to doing things in a C++/CLI app. Any suggestions would be very welcome.</p>
http://stackoverflow.com/questions/1565142/what-is-the-simplest-way-to-display-and-change-an-image-resource-on-a-wpf-dialo/1566015#15660150Answer by Jon Cage for What is the simplest way to display (and change) an image resource on a WPF dialog (using C++/CLI)?Jon Cage2009-10-14T12:46:07Z2009-10-14T13:21:24Z<p>Well it may not be the best solution, but the following works.</p>
<p>Create a new <code>Windows Forms Application</code></p>
<p>Add these libraries to your linker settings (<code>Project Proerties -> Link -> Input -> Additional Dependencies</code>):</p>
<pre><code>User32.lib Gdi32.lib
</code></pre>
<p>Add these headers:</p>
<pre><code>#include <windows.h>
#include "resource.h"
</code></pre>
<p>Add these namespaces:</p>
<pre><code>using namespace System::Reflection;
using namespace System::Runtime::InteropServices;
</code></pre>
<p>Add a pair of bitmaps to your resources and call them <code>IDB_BITMAP1</code> and <code>IDB_BITMAP2</code>.</p>
<p>Add a picture box called <code>m_pictureBox1</code>.</p>
<p>Add a button and double-click the button to add an on-click handler:</p>
<p>System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)
{
// Remove any previously stored images
if(m_pictureBox1->Image != nullptr)
{
delete m_pictureBox1->Image;
}</p>
<p>// Pick a new bitmap
static int resource = IDB_BITMAP1;
if( resource == IDB_BITMAP2)
{
resource = IDB_BITMAP1;
}
else
{
resource = IDB_BITMAP2;
}</p>
<p>// Get the primary module
Module^ mod = Assembly::GetExecutingAssembly()->GetModules()[0];</p>
<p>// Get the instance handle
IntPtr hinst = Marshal::GetHINSTANCE(mod);</p>
<p>// Get the bitmap as unmanaged
HANDLE hbi = LoadImage((HINSTANCE) hinst.ToPointer(),MAKEINTRESOURCE(resource),IMAGE_BITMAP,0,0,LR_DEFAULTCOLOR); </p>
<p>// import the unmanaged bitmap into the managed side
Bitmap^ bi = Bitmap::FromHbitmap(IntPtr(hbi));</p>
<p>// insert the bitmap into the picture box
m_pictureBox1->Image = bi;</p>
<p>// Free up the unmanaged bitmap
DeleteObject(hbi);</p>
<p>delete hinst;</p>
<p>// Free up the
delete mod;
}</p>
<p>..et voila the bitmaps are stored neatly in you app and each time you click the button the images will swap.</p>
http://stackoverflow.com/questions/1566045/why-does-my-picturebox-loading-routine-leak-memory0Why does my PictureBox loading routine leak memory?Jon Cage2009-10-14T12:53:24Z2009-10-14T13:04:22Z
<p>I've been <a href="http://stackoverflow.com/questions/1565142/what-is-the-simplest-way-to-display-and-change-an-image-resource-on-a-wpf-dialo">trying to swap images in a PictureBox in a C++/CLI application</a> but my solution appears to have a memory leak:</p>
<pre><code>System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)
{
// Pick a new bitmap
static int resource = IDB_BITMAP1;
if( resource == IDB_BITMAP2)
{
resource = IDB_BITMAP1;
}
else
{
resource = IDB_BITMAP2;
}
// Get the primary module
Module^ mod = Assembly::GetExecutingAssembly()->GetModules()[0];
// Get the instance handle
IntPtr hinst = Marshal::GetHINSTANCE(mod);
// Get the bitmap as unmanaged
HANDLE hbi = LoadImage((HINSTANCE) hinst.ToPointer(),MAKEINTRESOURCE(resource),IMAGE_BITMAP,0,0,LR_DEFAULTCOLOR);
// Import the unmanaged bitmap into the managed side
Bitmap^ bi = Bitmap::FromHbitmap(IntPtr(hbi));
// Remove any previously stored images
if(m_pictureBox1->Image != nullptr)
{
delete m_pictureBox1->Image;
m_pictureBox1->Image = nullptr;
}
// Insert the bitmap into the picture box
m_pictureBox1->Image = bi;
// Free up the unmanaged bitmap
DeleteObject(hbi);
}
</code></pre>
<p>As far as I can see, I'm explicitely releasing the memory so why does task manager report an ~24k increase in memory each time the button is clicked?</p>
http://stackoverflow.com/questions/1566045/why-does-my-picturebox-loading-routine-leak-memory/1566085#15660850Answer by Jon Cage for Why does my PictureBox loading routine leak memory?Jon Cage2009-10-14T13:00:52Z2009-10-14T13:00:52Z<p>Bizarrely, this actually looks to be caused when you mouse-over the button. Each time you do that the memory jumps but after enough mouse-overs that memory usage stabilises. The actual clicks on the button (i.e. calls to my routine) don't cause any leakage.</p>
http://stackoverflow.com/questions/1444961/is-there-a-good-python-library-that-can-parse-c/1445074#14450743Answer by Jon Cage for Is there a good Python library that can parse C++?Jon Cage2009-09-18T14:55:15Z2009-09-18T15:07:09Z<p>If you've formatted your comments in a compatible way, <a href="http://www.stack.nl/~dimitri/doxygen/" rel="nofollow">Doxygen</a> does a fantastic job. It'll even draw inheritance diagrams if you've got <a href="http://www.graphviz.org/" rel="nofollow">graphviz</a> installed.</p>
<p>For example, running DOxygen over the following:</p>
<pre><code>/// <summary>
/// A summary of my class
/// </summary>
public class MyClass
{
protected:
int m_numOfWidgets; /// Keeps track of the number of widgets stored
public:
/// <summary>
/// Constructor for the class.
/// </summary>
/// <param paramName="numOfWidgets">Specifies how many widgets to start with</param>
BaseFitter(int numOfWidgets)
{
m_numOfWidgets = numOfWidgets;
}
/// <summary>
/// Increments the number of widgets stored by the amount supplied.
/// </summary>
/// <param paramName="numOfWidgets">Specifies how many widgets to start with</param>
/// <returns>The number of widgets stored</returns>
IncreaseWidgets(int numOfWidgetsToAdd)
{
m_numOfWidgets += numOfWidgets;
return m_numOfWidgets;
}
};
</code></pre>
<p>Will turn all those comments into entries in .html files. With more complicated designs, the result is even more beneficial - often much easier than trying to browse through the source.</p>
http://stackoverflow.com/questions/1444919/bare-minimum-you-need-to-work-for-an-opensource-project/1444947#14449471Answer by Jon Cage for bare minimum you need to work for an opensource projectJon Cage2009-09-18T14:32:58Z2009-09-18T14:44:18Z<p>I would think that depends entirely upon the project. Most well set up software projects will specify:</p>
<ul>
<li>What language(s) they're written in</li>
<li>What developer environments (if any) they're set up for</li>
<li>What tools you need to build/compile/run the project</li>
<li>Test data with which to test the software</li>
</ul>
<p>What are you working on? Are you sure they don't provide any of this information?</p>
http://stackoverflow.com/questions/1444595/being-able-to-debug-a-winforms-application-and-avoid-the-gui-from-freezing/1444664#14446640Answer by Jon Cage for Being Able to Debug a WinForms Application and Avoid the GUI from FreezingJon Cage2009-09-18T13:51:58Z2009-09-18T13:51:58Z<p>How is your thread posting information back into the main thread? I've been able to debug multithreaded apps by placing breakpoints in the worker thread before.</p>
<p>Really, you ought to make the bit that runs in the seperate thread testable on it's own. That way you can debug it in isolation and not have to worry about the inter-thread issues.</p>
http://stackoverflow.com/questions/1443395/unable-to-create-an-operator-for-a-generic-type0Unable to create an operator== for a generic type?Jon Cage2009-09-18T09:16:17Z2009-09-18T11:43:30Z
<p>I've got a generic range class and I'm trying to add a comparison operator so I can test whether one range is equal to another. It fails to compile and I'm not sure how to fix the issues it's complaining about. Have I missed something obvious? Here's a snippet of the code:</p>
<pre><code>generic<typename T>
public ref class Range
{
protected:
T m_min;
T m_max;
public:
...
...
bool operator==(Range<T>% rhs)
{
return ( m_min == rhs.m_min ) && ( m_max == rhs.m_max );
}
};
</code></pre>
<p>...which fails to compile with the following error:</p>
<pre><code>1>c:\projects\Utils.h(47) : error C2676: binary '==' : 'T' does not define this operator or a conversion to a type acceptable to the predefined operator
</code></pre>
<p>Do I need to define conversions for each type that I want to overload (I'm using an Int32 instantiation)? I was hoping to avoid that sort of thing as it rather detracts from using generics.</p>
<p><strong>[Edit]</strong> I've got an instantiation as follows:</p>
<pre><code>Range<Int32> a = Range<Int32>(0,5);
Range<Int32> b = Range<Int32>(1,3);
if( Int32(2) != Int32(4) )
{
printf("Int32 supports != operator");
}
if( a != b )
{
printf("A != B : SUCCESS");
}
else
{
printf("A == B : FAIL");
}
</code></pre>
<p>...which compiles okay aside fromt he aforementioned errors. If I convert each value to an Int32 it compiles, but really I'd like to keep the class as generic as possible (i.e. not havnig to overload for each and every type). I guess I could subclass for each type and do the overloaded operators there, but the solution is less neat than I had expected when I first discovered <code>generic</code>s ;-)</p>
http://stackoverflow.com/questions/1443129/completely-wrap-an-object-in-python/1443179#14431790Answer by Jon Cage for Completely wrap an object in PythonJon Cage2009-09-18T08:14:31Z2009-09-18T08:14:31Z<p>By 'existing object' you mean an instance of another class? Sounds to me as though you just need to inherit from the base class. When you create your new object, pass in the details of the base object, or add a method in your new class which copies the data of the base class instance into itself.</p>
http://stackoverflow.com/questions/1438283/find-coordinates-for-point-on-screen/1438329#14383290Answer by Jon Cage for Find Coordinates for point on screen?Jon Cage2009-09-17T11:40:13Z2009-09-17T11:40:13Z<p>Do you know what coordinates your pointer is in? You can get the coordinates for your window with a call to <code>GetWindowRect()</code> and subtract the top/left from your mouse cursor to get client coordinates.</p>
<p>I seem to remember there being a function to do that for you in fact, but it's been some time since I dabbled in custom GUI controls.</p>
http://stackoverflow.com/questions/1438220/why-does-psyco-use-a-lot-of-memory/1438250#14382501Answer by Jon Cage for Why does Psyco use a lot of memory?Jon Cage2009-09-17T11:25:24Z2009-09-17T11:33:43Z<blockquote>
<p>The memory overhead of Psyco is currently large. I has been reduced a bit over time, but it is still an overhead. <strong>This overhead is proportional to the amount of Python code that Psyco rewrites</strong>; thus if your application has a few algorithmic "core" functions, these are the ones you will want Psyco to accelerate --- not the whole program.</p>
</blockquote>
<p>So I would think the large memory requirements are due to the fact that it's loading source into memory and then compiling it as it goes. The more source you try and compile the more it's going to need. I'd guess that if it's trying to optomise it on top of that, it'll look at multiple possible solutions to try and identify the best case. </p>
http://stackoverflow.com/questions/1432765/how-to-transferupload-download-a-file-where-it-gets-stopped-due-to-network-fai/1432799#14327990Answer by Jon Cage for how to transfer(upload/download) a file where it gets stopped due to network failure,it must resume from the last written byteJon Cage2009-09-16T12:56:42Z2009-09-16T13:17:33Z<p>It's not a C# solution, but <a href="http://getright.com/" rel="nofollow">Getright</a> does this very well.</p>
<p>Programmatically, for writing files, I would think that to resume a transfer you'd need to connect in, read the file (or in some other way, identify how big it is) and then open it and append the remaining data. It might be worth checking that the last N bytes in the existing file match those in your local file. Reading would be similar - skip to a specific part of the file and start reading back.</p>
<p><strong>[Edit]</strong> If you've managed to establish an FTP connection, the command you need is <a href="http://www.freesoft.org/CIE/RFC/959/23.htm" rel="nofollow">REST</a>:</p>
<blockquote>
<p><strong>RESTART (REST)</strong></p>
<p>The argument field represents the server marker at which file transfer is to be restarted. This command does not cause file transfer but skips over the file to the specified data checkpoint. This command shall be immediately followed by the appropriate FTP service command which shall cause file transfer to resume. </p>
</blockquote>
<p>I'm sure there are <a href="http://www.google.co.uk/search?hl=en&client=firefox-a&rls=org.mozilla%3Aen-GB%3Aofficial&hs=qUF&q=ftp+client+library+c%23&btnG=Search&meta=" rel="nofollow">a few simple C# ftp client libraries</a> you could use if you've not already found/written one.</p>
http://stackoverflow.com/questions/1432296/htaccess-redirect-rewrite-help-needed/1432318#14323180Answer by Jon Cage for .htaccess redirect/rewrite help neededJon Cage2009-09-16T11:09:25Z2009-09-16T11:09:25Z<p>Something like this ought to work:</p>
<pre><code>RewriteEngine on
RewriteRule ^http://example.com/cms$ http://example.com/cms/index.php?page=filename
</code></pre>
<p>...should work.</p>
<p>Have a look at <a href="http://www.workingwith.me.uk/articles/scripting/mod_rewrite" rel="nofollow">a tutorial with some examples</a> if you're interested in seeing what else you can do.</p>
http://stackoverflow.com/questions/1426469/problem-with-users-defined-and-window-messages-in-a-thread/1426569#14265691Answer by Jon Cage for Problem with "users defined and window messages" in a threadJon Cage2009-09-15T11:19:23Z2009-09-15T11:25:23Z<p>I don't think there's any scheduling done on messages, it's probably just that while the mouse doing something, it'll be causnig your code to handle it's actions. Since you've only got a single thread, it'll lock up your camera as you've suggested.</p>
<p>You might be able to do something to yield control temporarily to allow other messages to process.</p>
<p>Relying on the windows message pump as a way of updating the display is probably not the best solution in this case. Personally I'd suggest running the camera code in a background thread so that your GUI remains responsive without tying up your data-capture process.</p>
<p><strong>[Edit]</strong> It looks to me (from your indenting) that there ought to be a '{' between the following lines:</p>
<pre><code>if(new_event >= 2 && new_event!= size)
ResetEvent( events[new_event]);
</code></pre>
http://stackoverflow.com/questions/1421272/coordinate-transformation-c/1421399#14213990Answer by Jon Cage for Coordinate Transformation C++ Jon Cage2009-09-14T12:58:48Z2009-09-14T12:58:48Z<p>If you know the location in the physical world of your four markers and you've recorded the positions as they appear on the camera, you ought to be able to derive some sort of transform.</p>
<p>When you do the calibration, surely you'd want to put the marker at the four corners of the table not the screen? If you're just doing the corners of the screen, I imagine you're probably not taking into acconut the slant of the table.</p>
<p>Is the table literally just slanted relative to the camera or is it also rotated at all?</p>
http://stackoverflow.com/questions/1394484/how-do-i-propagate-c-exceptions-to-python-in-a-swig-wrapper-library/1394539#13945390Answer by Jon Cage for How do I propagate C++ exceptions to Python in a SWIG wrapper library?Jon Cage2009-09-08T15:08:15Z2009-09-08T15:08:15Z<p>Is the <a href="http://www.swig.org/Doc1.1/HTML/Exceptions.html" rel="nofollow">swig exception documentation</a> any help? It mentions <a href="http://www.swig.org/Doc1.1/HTML/Exceptions.html#n5" rel="nofollow">defining different exception handlers</a>..</p>
http://stackoverflow.com/questions/1388892/serial-port-open-errors/1389069#13890690Answer by Jon Cage for Serial Port - Open errorsJon Cage2009-09-07T12:04:09Z2009-09-07T13:01:08Z<p>For more general advice, have a look at <a href="http://msdn.microsoft.com/en-us/library/system.io.ports.aspx" rel="nofollow">the System.IO.Ports namespace</a> which has a more complete example. Personally I'd adapt what they have there to set your general port settings and then try a few different baud rates in debug mode (some bad, one known good). You'll very quickly see what a bad configuration gives vs a good one. I'm assuming you have access to test the device here?</p>
<p>It's worth noting that you won't see any problems with the call to open the port (just opening it will only test that you've set some parameters which the port supports). You'll start to see issues when you try and read/write to the device and it's there that you'll want to do the error checking for a valid baud rate.</p>
<p><strong>[EDIT]</strong> Try something along these lines (NOTE: I've not tested this with any hardware but it at least compiles):</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using System.Threading;
using System.IO.Ports;
namespace SerialPortExperiments
{
class Program
{
public static void Main()
{
// Create a new SerialPort object with default settings.
SerialPort _serialPort = new SerialPort();
// Set some generic settings
SetBasicSettings(ref _serialPort);
// Try and find something valid
int baudRate = FindValidBaud(ref _serialPort);
if (baudRate > 0)
{
Console.WriteLine(String.Format("Found baudrate: {0}", baudRate));
}
else
{
Console.WriteLine("ERROR: Failed to identify baudrate");
}
}
public static void SetBasicSettings(ref SerialPort port)
{
port.PortName = "COM1";
port.Parity = Parity.None;
port.DataBits = 8;
port.StopBits = 0;
port.Handshake = Handshake.None;
port.ReadTimeout = 500;
port.WriteTimeout = 500;
}
public static int FindValidBaud(ref SerialPort port)
{
bool buadrateIdentified = false;
// Pick some baudrates to try
List<int> baudrates = new List<int>();
baudrates.Add(9600);
baudrates.Add(19200);
// Try and open the port at each baud rate in turn, trying one write/read to verify success
for (int i = 0; i < baudrates.Count; i++)
{
// Pick a baud rate
port.BaudRate = baudrates[i];
// Try opening a connection and exchanging some data
port.Open();
buadrateIdentified = AttemptValidExchange(ref port);
port.Close();
if (buadrateIdentified)
{
return port.BaudRate;
}
}
return -1;
}
public static bool AttemptValidExchange(ref SerialPort port)
{
try
{
// Send a test command
port.Write("SOME_TEST_COMMAND");
// Check to see what the device responded with
const int expectedReturnLength = 1024;
byte[] buffer = new byte[expectedReturnLength];
port.Read(buffer, 0, expectedReturnLength);
if (buffer.ToString().Equals("EXPECTED_RETURN_VALUE"))
{
return true;
}
}
catch (TimeoutException) // NOTE: You'll probably need to catch other exceptions like parity errors here
{
}
return false;
}
}
}
</code></pre>
http://stackoverflow.com/questions/1378547/how-to-call-c-dll-from-a-c-cli-application2How to call C# .dll from a C++/CLI application?Jon Cage2009-09-04T10:59:16Z2009-09-04T11:11:26Z
<p>I'm trying to call <a href="http://www.codeproject.com/KB/database/CsvReader.aspx" rel="nofollow">the LumenWorks .csv file reading library</a> from a C++/CLI application and having some issues. I've added a dependancy on <code>LumenWorks.Framework.IO.dll</code> but when I try to then use the library:</p>
<pre><code>namespace MyNamespace
{
using namespace Lumenworks::Framework::IO::Csv;
// <My code definitions here>
}
</code></pre>
<p>I get a message that the compiler doesn't recognise 'Lumenworks'. Do I need to reference header files from the sources or is there a way to get the same information from the .dll?</p>
http://stackoverflow.com/questions/1378034/what-does-net-give-me-that-win32-does-not/1378074#13780740Answer by Jon Cage for What does .NET give me, that Win32 does NOT?Jon Cage2009-09-04T09:00:41Z2009-09-04T09:59:05Z<p>Aside from the points you've already made..</p>
<ul>
<li>.NET is less platform dependant (under <a href="http://mono-project.com/Main_Page" rel="nofollow">mono</a> it will run on Windows, Linux, OS X, BSD etc.)</li>
<li>You can write .NET code in VB, C#, C++ etc. and have modules written in the different languages all working happily together without too much pain.</li>
</ul>
<p>Actually I think you'll find .NET wraps a lot of win32 functionality.</p>
http://stackoverflow.com/questions/945427/c-wpf-isenabled-using-multiple-bindings1C# WPF IsEnabled using multiple bindings?Jon Cage2009-06-03T15:32:38Z2009-08-21T14:44:23Z
<p>I have a WPF xaml file describing a section of a GUI and I'd like the enabling/disabling of a particular control to be dependent on two others. The code looks something like this at the moment:</p>
<pre><code><ComboBox Name="MyComboBox"
IsEnabled="{Binding ElementName=SomeCheckBox, Path=IsChecked}"/>
</code></pre>
<p>But I'd like it to be dependant on another checkbox as well so something like:</p>
<pre><code><ComboBox Name="MyComboBox"
IsEnabled="{Binding ElementName=SomeCheckBox&AnotherCheckbox, Path=IsChecked}"/>
</code></pre>
<p>What's the best way to go about that? I can't help feeling I'm missing something obvious or going about this the wrong way?</p>
http://stackoverflow.com/questions/1055920/how-to-write-to-a-bitmap-image-buffer-for-faster-gdi-displays1How to write to a (Bitmap?) image buffer for faster GDI+ displays?Jon Cage2009-06-28T22:26:08Z2009-08-07T12:08:06Z
<p>Using C++ and .net I have a stream of data I want to display as a scrolling image. Each time I get some new data I want to add it as a new row (128x1 pixels) and scroll the previous contents to one side.</p>
<p>My first stab at the problem involved rendering the entire data set each time I got a new row. This worked, but was far too slow, so I'm thinking it might make more sense to write to a buffer of some sort (a bitmap maybe?). The problem is that I can't see how I can do that; <strong><code>Graphic</code></strong> objects allow you to draw quite happily, but I can't see an obvious way to tell my control to use a <strong><code>Bitmap</code></strong> object as it's buffer? Similarly, I can't see a way to draw on a bitmap which I could then write to the screen.</p>
<p>This must be possible, but my google-foo has failed me thus far...</p>
<p><strong>[Edit1]</strong> Just to clarify, the data is a spectrogram. The following image shows the sort of thing I was trying to achieve:</p>
<p><img src="http://www.geekops.co.uk/photos/0000-00-02%20%28Forum%20images%29/ScrollingGraphicsAlgorithmExplanation.png" alt="alt text" /></p>
<p>The data I'm plotting comes in arrays of floats. There's nothing to limit how many I'll get, so I just want to forget data as it drops off the side of the plot.</p>
<p>I'm currently inheriting from a <strong><code>System::Windows::Forms::UserControl</code></strong>, but could switch to something else if there's a better alterative?</p>
http://stackoverflow.com/questions/1074813/looking-for-a-faster-than-gdi-solution-for-rendering-dynamic-data-plots1Looking for a faster-than-GDI solution for rendering dynamic data plotsJon Cage2009-07-02T14:43:46Z2009-08-07T07:56:25Z
<p>I've written a simple GDI-based data plotter using C++/CLI but it's not particularly fast (some basic profiling indicates it's the rendering to screen that's the problem).</p>
<p>Is there any way to enable hardware acceleration for a UserControl or is there a .net interface for direct3D? ...or are there some other options I could consider.</p>
<p>We're using managed code so the solution really needs to be CLI compatible if at all possible.</p>
<p><strong>[Edit]</strong> In case it helps, I'm rending strips (128 data points) of rectangles which are each 2x2 pixels using <code>Graphics::FillRectangle</code> - maybe there's a better way of doing that?</p>
http://stackoverflow.com/questions/1232562/wpf-set-image-for-a-button-in-the-c-code-behind-at-runtime/1232696#12326960Answer by Jon Cage for WPF set image for a button in the C# code behind at runtimeJon Cage2009-08-05T11:35:14Z2009-08-05T11:35:14Z<p>Can you confirm that it's a <a href="http://msdn.microsoft.com/en-us/library/ms597473.aspx" rel="nofollow">System.Windows.Controls.UserControl</a> derived object you're creating?</p>
<p>My guess would be that the control loads it's bitmap when you create it so setting the image source property after that isn't being caught. Have you tried creating a button programmatically with a two-stage creation and setting it before you do the second stage?</p>
<p>You could try calling the button's Invalidate() function to make sure it redraws.</p>
http://stackoverflow.com/questions/1796581/how-much-historical-data-do-we-need-to-keepComment by Jon Cage on How much historical data do we need to keep?Jon Cage2009-11-25T12:28:26Z2009-11-25T12:28:26Z-1: Depends what data you've got and what your requirements are.http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/115654#115654Comment by Jon Cage on Is Python any good for GUI development?Jon Cage2009-11-20T15:11:18Z2009-11-20T15:11:18ZI've fixed the link.http://stackoverflow.com/questions/1769575/how-to-share-constant-values-in-net-namespacesComment by Jon Cage on How to share constant values in .net namespaces?Jon Cage2009-11-20T10:38:27Z2009-11-20T10:38:27ZI tagged it with C++-cli but I'll clarify.http://stackoverflow.com/questions/1769575/how-to-share-constant-values-in-net-namespaces/1769610#1769610Comment by Jon Cage on How to share constant values in .net namespaces?Jon Cage2009-11-20T10:37:22Z2009-11-20T10:37:22ZThat seems like a reasonable compromise. We have a bunch of related functionality which shares some common elements so as a quick and dirty solution, this seems like a workable way of progrssing.http://stackoverflow.com/questions/1570917/extracting-c-c-function-prototypes/1570944#1570944Comment by Jon Cage on Extracting C / C++ function prototypesJon Cage2009-10-15T08:11:59Z2009-10-15T08:11:59ZGah, beaten to it. I agree though :-)http://stackoverflow.com/questions/1566045/why-does-my-picturebox-loading-routine-leak-memory/1566068#1566068Comment by Jon Cage on Why does my PictureBox loading routine leak memory?Jon Cage2009-10-14T13:22:44Z2009-10-14T13:22:44ZThat would make sense..http://stackoverflow.com/questions/1566045/why-does-my-picturebox-loading-routine-leak-memory/1566068#1566068Comment by Jon Cage on Why does my PictureBox loading routine leak memory?Jon Cage2009-10-14T13:05:03Z2009-10-14T13:05:03ZThat was my initial reaction, but explicitely deleted the objects should get around those effects shouldn't they?http://stackoverflow.com/questions/1444919/bare-minimum-you-need-to-work-for-an-opensource-project/1444926#1444926Comment by Jon Cage on bare minimum you need to work for an opensource projectJon Cage2009-09-18T14:36:32Z2009-09-18T14:36:32Z-1: You forgot to mention needing oxygen to breath and a planet to stand on before you even get close to worrying about something to eat and working on OS projects! :-)http://stackoverflow.com/questions/1443395/unable-to-create-an-operator-for-a-generic-type/1444032#1444032Comment by Jon Cage on Unable to create an operator== for a generic type?Jon Cage2009-09-18T13:39:21Z2009-09-18T13:39:21ZJust tried that and got the same errorhttp://stackoverflow.com/questions/1443395/unable-to-create-an-operator-for-a-generic-type/1443463#1443463Comment by Jon Cage on Unable to create an operator== for a generic type?Jon Cage2009-09-18T09:43:47Z2009-09-18T09:43:47ZYeah, that's what I was hoping to do, but it seems generics are more restricted than I'd hoped (or I've not found the appropriate way of achieving the same thing).http://stackoverflow.com/questions/1443395/unable-to-create-an-operator-for-a-generic-type/1443421#1443421Comment by Jon Cage on Unable to create an operator== for a generic type?Jon Cage2009-09-18T09:34:27Z2009-09-18T09:34:27ZFair points on the const's and private. Yes you're right about the C++/CLI craziness ;-)http://stackoverflow.com/questions/1443129/completely-wrap-an-object-in-python/1443179#1443179Comment by Jon Cage on Completely wrap an object in PythonJon Cage2009-09-18T09:03:09Z2009-09-18T09:03:09ZI had a feeling that might be the case.. so basically you want to create an interface to an existing class. In which case, your suggestion is probably a neat way of going about it. Good luck :-)http://stackoverflow.com/questions/1438924/finding-closest-match-in-collection-of-strings-representing-numbersComment by Jon Cage on Finding closest match in collection of strings representing numbersJon Cage2009-09-17T13:49:02Z2009-09-17T13:49:02ZThere - fixed it ;-)http://stackoverflow.com/questions/1438220/why-does-psyco-use-a-lot-of-memory/1438422#1438422Comment by Jon Cage on Why does Psyco use a lot of memory?Jon Cage2009-09-17T13:09:09Z2009-09-17T13:09:09ZYou can definitely add members and functions to an instantiation of a class on the fly. You could unload, modify then reload a module containing a class and start usnig the new one too.http://stackoverflow.com/questions/1438283/find-coordinates-for-point-on-screenComment by Jon Cage on Find Coordinates for point on screen?Jon Cage2009-09-17T11:40:56Z2009-09-17T11:40:56ZPosting a bit of code showing what you're currently using would help us answer your question :-)