User Roddy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T16:10:11Zhttp://stackoverflow.com/feeds/user/1737http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1259849/delphi-how-to-programmatically-adjust-visual-ordering-of-components-with-align2Delphi: How to programmatically adjust visual ordering of components with align = alTopRoddy2009-08-11T11:39:53Z2009-12-18T01:01:36Z
<p>I've got a form with a number of panels, each of which has Align=alTop, so they stack down nicely from the top of the form.</p>
<p>However, I want to dynamically change the appearance order of these panels - i.e, move them up and down. What's the best way of doing this?</p>
http://stackoverflow.com/questions/1909945/force-derived-class-to-call-base-function/1909993#19099930Answer by Roddy for Force derived class to call base functionRoddy2009-12-15T20:01:32Z2009-12-15T20:01:32Z<p>Answering for C++, you cannot have an inherited function "invisibly" called in the way you want.</p>
<p>The only methods that call down through inherited classes are constructors and destructors.</p>
http://stackoverflow.com/questions/446276/is-there-a-catch-with-fastformat6Is there a 'catch' with FastFormat?Roddy2009-01-15T10:27:28Z2009-12-15T16:43:56Z
<p>I just read about the <a href="http://www.fastformat.org/" rel="nofollow">FastFormat C++ i/o formatting library</a>, and it seems too good to be true: Faster even than printf, typesafe, and with what I consider a pleasing interface:</p>
<pre><code> // prints: "This formats the remaining arguments based on their order - in this case we put 1 before zero, followed by 1 again"
fastformat::fmt(std::cout, "This formats the remaining arguments based on their order - in this case we put {1} before {0}, followed by {1} again", "zero", 1);
// prints: "This writes each argument in the order, so first zero followed by 1"
fastformat::write(std::cout, "This writes each argument in the order, so first ", "zero", " followed by ", 1);
</code></pre>
<p>This looks almost too good to be true. Is there a catch? Have you had good, bad or indifferent experiences with it?</p>
<p>CW on this question, as there's probably no right answer...</p>
http://stackoverflow.com/questions/180320/are-c-templates-just-macros-in-disguise11Are C++ Templates just Macros in disguise?Roddy2008-10-07T20:43:07Z2009-12-15T05:15:37Z
<p>I've been programming in C++ for a few years, and I've used STL quite a bit and have created my own template classes a few times to see how it's done.</p>
<p>Now I'm trying to integrate templates deeper into my OO design, and a nagging thought keeps coming back to me: They're just a macros, really... You could implement (rather UGLY) auto_ptrs using #defines, if you really wanted to.</p>
<p>This way of thinking about templates helps me understand how my code will actually work, but I feel that I must be missing the point somehow. Macros are meant evil incarnate, yet "template metaprogramming" is all the rage.</p>
<p>So, what ARE the real distinctions? and how can templates avoid the dangers that #define leads you into, like</p>
<ul>
<li>Inscrutable compiler errors in
places where you don't expect them?</li>
<li>Code bloat? </li>
<li>Difficulty in tracing code?</li>
<li>Setting Debugger Breakpoints?</li>
</ul>
http://stackoverflow.com/questions/304918/getting-started-with-soap-for-delphi-in-win322Getting started with SOAP for Delphi in Win32Roddy2008-11-20T10:43:33Z2009-12-12T14:31:00Z
<p>I have a server process built in Delphi/C++Builder with RemObjects SDK which claims to support SOAP requests.</p>
<p>What's the quickest and easiest way of testing out the SOAP support? I'd prefer not to have to learn a new language/install a new IDE/spend more than a day...</p>
<p>To clarify this, I'm already connecting to the server happily using the RO native protocol, and have SOAP enabled, but I want to test how systems NOT based on the RO SDK can use it. Using RO SOAP for both client and server doesn't accomplish this...</p>
http://stackoverflow.com/questions/1885064/how-can-i-customize-s-has-encountered-a-problem-and-needs-to-close/1885104#18851041Answer by Roddy for How can I customize "%s has encountered a problem and needs to close"?Roddy2009-12-11T00:37:25Z2009-12-11T00:37:25Z<p>Why not just rename your application executable <code>FooBrowser™.exe</code>?</p>
http://stackoverflow.com/questions/969496/access-iterator-in-boostforeach-loop0Access Iterator in BOOST_FOREACH loopRoddy2009-06-09T11:30:00Z2009-12-07T08:01:57Z
<p>I have a BOOST_FOREACH loop to iterate over a list. Unfortunately, I also need to cache an iterator to a particular item.</p>
<pre><code>typedef List::iterator savedIterator;
BOOST_FOREACH(Item &item, list)
{
// stuff...
if (condition)
savedIterator = &item; // this won't work
// do more stuff...
}
</code></pre>
<p>Obviously I can do this using a list.begin()..list.end() for loop, but I've grown to like BOOST_FOREACH. Is there a way round this?</p>
http://stackoverflow.com/questions/433105/exactly-how-fast-are-modern-cpus13Exactly how "fast" are modern CPUs?Roddy2009-01-11T15:53:26Z2009-11-21T19:09:30Z
<p>When I used to program embedded systems and early 8/16-bit PCs (6502, 68K, 8086) I had a pretty good handle on exacly how long (in nanoseconds or microseconds) each instruction took to execute. Depending on family, one (or four) cycles equated to one "memory fetch", and without caches to worry about, you could guess timings based on the number of memory accesses involved.</p>
<p>But with modern CPU's, I'm confused. I know they're a lot faster, but I also know that the headline gigahertz speed isn't helpful without knowing how many cycles of that clock are needed for each instruction.</p>
<p>So, can anyone provide some timings for two sample instructions, on (let's say) a 2GHz Core 2 Duo. Best and worst cases (assuming nothing in cache/everything in cache) would be useful.</p>
<p><strong>Instruction #1:</strong> Add one 32-bit register to a second.</p>
<p><strong>Instruction #2:</strong> Move a 32-bit value from register to memory.</p>
<p><strong>Edit</strong>: The reason I ask this is to try and develop a "rule-of-thumb" that would allow me to look at simple code and roughly gauge the time taken to the nearest order of magnitude. </p>
<p><strong>Edit #2:</strong> Lots of answers with interesting points, but nobody (yet) has put down a figure measured in time. I appreciate there are "complications" to the question, but c'mon: If we can estimate the <a href="http://www.google.com/url?sa=t&source=web&ct=res&cd=1&url=http%3A%2F%2Fmathforum.org%2Fworkshops%2Fsum96%2Finterdisc%2Fclassicfermi.html&ei=sE9qSf7LBuTSjAeQpaG2Bw&usg=AFQjCNF42Q4z65LsDYUtWCdbrdBHLLoC6A&sig2=5dsQt_00GjpCcmae6vTDfA" rel="nofollow">number of piano-tuners in NYC</a>, we should be able to estimate code runtimes...</p>
<p>Take the following (dumb) code: </p>
<pre><code>int32 sum = frigged_value();
// start timing
for (int i = 0 ; i < 10000; i++)
{
for (int j = 0 ; j < 10000; j++)
{
sum += (i * j)
}
sum = sum / 1000;
}
// end timing
</code></pre>
<p>How can we <em>estimate</em> how long it will take to run... 1 femtosecond? 1 gigayear?</p>
http://stackoverflow.com/questions/1762508/client-server-integer-always-received-as-1-c-programming/1762840#17628400Answer by Roddy for Client/Server: Integer always received as 1 (C-programming)Roddy2009-11-19T12:05:46Z2009-11-19T12:05:46Z<p>I'd check that your main sender/receiver code is handling the correct amount of data. </p>
<p>If your sender sends 20 bytes followed by a four byte ACK but the receiver only reads 16 before trying to read the ACK, you could have this sort of problem.</p>
<p>If you're sending variable length data (ie. with a bytecount prefix) a common confusion about whether the bytecount being transmitted actually includes the additional bytes required to send the byte count...</p>
http://stackoverflow.com/questions/344468/as-a-developer-what-changes-do-you-make-to-a-vanilla-windows-install52As a developer, what changes do you make to a vanilla Windows install ?Roddy2008-12-05T16:49:22Z2009-11-11T21:46:10Z
<p>When I get a vanilla Windows system, there's a bunch of stuff I change to make it more developer-friendly.</p>
<p>Some of it I remember every time, other stuff I only do as and when.</p>
<p>Examples:</p>
<ul>
<li>Show extensions of all file types</li>
<li>Make hidden and system file visible</li>
<li>Turn off Windows Defender</li>
</ul>
<p>I seem to remember a blog post from Jeff on this topic, but can't locate it!</p>
<p>What else do you do, and do you have any tools that automate this process?</p>
http://stackoverflow.com/questions/485525/round-for-float-in-c7round() for float in C++Roddy2009-01-27T22:06:30Z2009-11-10T10:18:13Z
<p>I need a simple floating point rounding function, thus: </p>
<pre><code>double round(double);
round(0.1) = 0
round(-0.1) = 0
round(-0.9) = -1
</code></pre>
<p>I can find ceil() and floor() in the math.h - but not round().</p>
<p>Is it present in the standard C++ library under another name, or is it missing??</p>
http://stackoverflow.com/questions/1529447/c-does-return-statement-copy-values/1531175#15311750Answer by Roddy for C++: Does return statement copy valuesRoddy2009-10-07T11:53:40Z2009-10-07T11:53:40Z<p>It returns a copy, which is what you want it to do. Changing it to return a reference will result in undefined behaviour in the assignment to line.</p>
<p>However, the idiomatic way to do this in C++ is with constructors and assignment lists. This encapsulates code and data structures better, and allows you to avoid the plethora of intermediate objects that compilers are free to construct/destruct/copy.</p>
<pre><code>struct subline_t {
int x1;/*top*/
int x2;/*bottom*/
int id;
// constructor which initialises values with assignment list.
subline_t(int the_x1, int the_x2, int the_id) :
x1(the_x1),
x2(the_x2),
id(the_id)
{
}
};
int main(){
subline_t line2(0,0,0); // never requires a copy or assignment.
}
</code></pre>
http://stackoverflow.com/questions/435322/good-or-bad-c-idiom-objects-used-purely-for-constructor-destructor6Good or Bad C++ Idiom - Objects used purely for constructor/destructor?Roddy2009-01-12T12:50:21Z2009-09-28T06:39:51Z
<p>I have a few classes which do nothing except in their constructors/destructors. Here's an example</p>
<pre><code>class BusyCursor
{
private:
Cursor oldCursor_;
public:
BusyCursor()
{
oldCursor_ = CurrentCursor();
SetCursor(BUSY_CURSOR);
}
~BusyCursor()
{
SetCursor(oldCursor_);
}
}
// example of use
void DoSlowThing
{
BusyCursor busy;
... do something time-consuming ...
}
</code></pre>
<p>I'm a little concerned about future readability. Am I being too "tricksy" here, with a variable ("busy") which is never actually used in the code? Could some static analysis tool suggest they be removed, or is this idiom sufficiently common not to worry about?</p>
http://stackoverflow.com/questions/1453679/best-way-of-validating-modal-dialog-fields1Best way of validating modal dialog fields?Roddy2009-09-21T09:47:45Z2009-09-21T22:05:52Z
<p>I often need to have modal dialogs for editing properties or application configuration settings, but I'm never really happy about how to validate these, and present the validation results to the user.</p>
<p>Choices and tools are typically:-</p>
<ol>
<li><p>Design UI so that invalid choices
are simply impossible - i.e. use
"mask edits", range limits on
spin-edits, </p></li>
<li><p>Try and trap errors as they're
found - immediate dialogs or
feedback when a user has an invalid
value entered somewhere (although,
because this may be due to an
incomplete entry, this can be
visually distracting)</p></li>
<li><p>Detect errors on change of
control focus</p></li>
<li><p>Validate entire dialog when OK
is pressed, and present message
box(es) showing what's wrong.</p></li>
</ol>
<p>No.4 is typically the easiest and quickest to code, but I'm never really happy with it. </p>
<p>What good techniques have you found to handle this?</p>
<p>While this question is fairly generic, an ideal answer would be easily implementable in Delphi for Win32...</p>
http://stackoverflow.com/questions/167862/how-can-i-unuse-a-namespace15How can I "unuse" a namespace?Roddy2008-10-03T16:59:58Z2009-09-15T20:25:20Z
<p>One of the vagaries of my development system (Codegear C++Builder) is that some of the auto-generated headers insist on having... </p>
<pre><code>using namespace xyzzy
</code></pre>
<p>...statements in them, which impact on my code when I least want or expect it.</p>
<p>Is there a way I can somehow cancel/override a previous "using" statement to avoid this.</p>
<p>Maybe...</p>
<pre><code>unusing namespace xyzzy;
</code></pre>
http://stackoverflow.com/questions/420315/stacks-why-push-and-pop5Stacks - why PUSH and POP?Roddy2009-01-07T13:35:38Z2009-09-11T06:44:49Z
<p>I was wondering why we use the terms "push" and "pop" for adding/removing items from stacks? Is there some physical metaphor that caused those terms to be common?</p>
<p>The only suggestion I have is something like a <a href="http://www.istockphoto.com/file_thumbview_approve/2645114/2/istockphoto_2645114_9mm_handgun_magazine.jpg" rel="nofollow">spring-loaded magazine for a handgun</a>, where rounds are "pushed" into it and can be "popped" out, but that seems a little unlikely.</p>
<p>A second stack trivia question: Why do most CPUs implement the call stack as growing <strong>downwards</strong> in memory, rather than upwards? </p>
http://stackoverflow.com/questions/1378219/do-standard-windows-ini-files-allow-comments0Do standard windows .ini files allow comments?Roddy2009-09-04T09:42:08Z2009-09-04T10:26:01Z
<p>Are comments allowed in Windows ini files? (...assuming you're using the <a href="http://msdn.microsoft.com/en-us/library/ms724353%28VS.85%29.aspx" rel="nofollow">GetPrivateProfileString</a> api functions to read them...)</p>
<pre><code>[Section]
Name=Value ; comment
; full line comment
</code></pre>
<p>And, is there a proper spec of the .INI file format anywhere? </p>
<p><em>Thanks for the replies</em> - However maybe I wasn't clear enough. It's only the format <strong>as read by Windows API Calls</strong> that I'm interested in. I know other implementations allow comments, but it's specifically the MS Windows spec and implementation that I need to know about.</p>
http://stackoverflow.com/questions/346774/adding-negative-and-positive-binary/346803#3468038Answer by Roddy for Adding negative and positive binary?Roddy2008-12-06T21:28:30Z2009-08-31T18:24:49Z<p>The beauty of two's complement is that at the binary level it's a matter of interpretation rather than algorithm - the hardware for adding two signed numbers is the same as for unsigned numbers (ignoring flag bits). </p>
<p>Your first example - "just add them" - is exactly the right answer. Your example numbers </p>
<ul>
<li>01001001 = 73</li>
<li>10101010 = -86</li>
</ul>
<p>So, the correct answer is indeed -13.</p>
<p>Subtracting is just the same, in that no special processing is required for two's complement numbers: you "just subtract them".</p>
<p>Note that where things get interesting is the handling of overflow/underflow bits. You can't represent the result of 73 - (-86) as an 8-bit two's complement number...</p>
http://stackoverflow.com/questions/1257014/ttabsheet-hints-in-delphi2TTabSheet hints in DelphiRoddy2009-08-10T20:25:43Z2009-08-28T14:00:50Z
<p>I want a TPageControl and some TTabSheets, with 'per tabsheet' tooltip hints visible as I hover over each tab in turn. </p>
<p>Is there any way of getting this effect in Delphi 2009?</p>
http://stackoverflow.com/questions/1331106/how-to-write-good-user-interface-text7How to write "good" user interface text?Roddy2009-08-25T21:27:28Z2009-08-26T08:30:02Z
<p>Many applications are let down by the quality of the 'writing' in their user interfaces - Typically, poor spelling, grammar, inconsistent tone, and worse yet, "humour" are the usual offenders.</p>
<p>Are there good resources that can help developers to write UI messages that give a professional and positive impression to your customers, even when your code's going to hell in a handcart?</p>
<p><strong>Thanks, all</strong>: Some great resources here, so I will CW this question. I'm accepting Adam Sill's answer because it's the one that (as a developer of desktop apps) I found most pertinent. </p>
http://stackoverflow.com/questions/399114/why-are-c-c-floating-point-types-so-oddly-named6Why are c/c++ floating point types so oddly named?Roddy2008-12-29T23:47:26Z2009-08-24T11:56:14Z
<p>C++ offers three floating point types: float, double, and long double. I infrequently use floating-point in my code, but when I do, I'm always caught out by warnings on innocuous lines like</p>
<pre><code>float PiForSquares = 4.0;
</code></pre>
<p>The problem is that the literal 4.0 is a double, not a float - Which is irritating.</p>
<p>For integer types, we have short int, int and long int, which is pretty straightforward. Why doesn't C just have short float, float and long float? And where on earth did "double" come from?</p>
<p>EDIT: It seems the relationship between floating types is similar to that of integers. double must be at least as big as float, and long double is at least as big as double. No other guarantees of precision/range are made.</p>
http://stackoverflow.com/questions/1311959/can-i-get-tcomboboxex-to-be-the-same-height-as-tcombobox/1312039#13120391Answer by Roddy for Can I get TComboBoxEx to be the same Height as TComboBox?Roddy2009-08-21T13:45:44Z2009-08-21T13:45:44Z<p>Two ways to change the height of TComboBoxEx, unfortunately neither are probably what you want.</p>
<ul>
<li><p>Set the font.size property smaller - the box will shrink. (however, your text is smaller)</p></li>
<li><p>Set the StyleEx.csExNoSizeLimit := false, then set Height := 21 as desired. Unfortunately, this just causes your box to be clipped, so the bottom bezel disappears.</p></li>
</ul>
<p>I'd probably replace all TComboBoxes with TComboBoxEx - <a href="http://www.gexperts.org" rel="nofollow">GExperts</a> has a brilliant 'replace components' wizard for doing this.</p>
<p>This looks like a Delphi bug. Have you reported it via QC?</p>
http://stackoverflow.com/questions/1311166/how-to-pinpoint-where-a-long-function-returns/1311189#13111898Answer by Roddy for How to pinpoint where a long function returnsRoddy2009-08-21T10:34:27Z2009-08-21T10:34:27Z<p>Sounds like it's time to refactor LongFunction()...</p>
<p>A 1000 line function is a bad code smell. Spend the time refactoring it into smaller, more maintainable functions. You'll find the bug(s) while you're at it, and it will be a worthwhile investment for the future.</p>
http://stackoverflow.com/questions/1306118/overhead-due-to-use-of-events/1308370#13083700Answer by Roddy for Overhead due to use of EventsRoddy2009-08-20T19:38:45Z2009-08-20T19:38:45Z<blockquote>
<p>It appears that this whole event thing
(along with the synchronization
between the threads using critical
sections) is pretty expensive !</p>
</blockquote>
<p>"Expensive" is a relative term. Are jets expensive? Are cars? or bicycles... shoes...? </p>
<p>In this case, the question is: are events "expensive" relative to the time taken for JobFunction to execute? It would help to publish some absolute figures: How long does the process take when "unthreaded"? Is it months, or a few femtoseconds? </p>
<p>What happens to the time as you increase the threadpool size? Try a pool size of 1, then 2 then 4, etc.</p>
<p>Also, as you've had some issues with threadpools here in the past, I'd suggest some debug
to count the number of times that your threadfunction is actually invoked... does it match what you expect?</p>
<p>Picking a figure out of the air (without knowing anything about your target system, and assuming you're not doing anything 'huge' in code you haven't shown), I'd expect the "event overhead" of each "job" to be measured in microseconds. Maybe a hundred or so. If the time taken to perform the algorithm in JobFunction is not significantly MORE than this time, then your threads are likely to cost you time rather than save it.</p>
http://stackoverflow.com/questions/1307284/closing-and-immediately-re-opening-a-com-port-fails-why0Closing and immediately re-opening a COM port fails: Why?Roddy2009-08-20T16:14:32Z2009-08-20T17:31:44Z
<p>I'm trying to do 'pre-flight checks' by testing a COM port's 'openability' before launching a dialog window which allows the user to do com-porty things.</p>
<p>Here's the code sequence, in outline:</p>
<pre><code>handle = CreateFile("\\\\.\\COM4:", GENERIC_READ | GENERIC_WRITE, 0,NULL, OPEN_EXISTING, FILE_FLAG_OVERLAPPED,NULL);
if (handle != INVALID_HANDLE_VALUE)
{
CloseHandle(handle);
DoTheWork("\\\\.\\COM4:");
}
else
{
ShowMessage("I'm sorry Dave, I can't do that");
}
...
void DoTheWork(char * port)
{
handle = CreateFile(port, GENERIC_READ | GENERIC_WRITE, 0,NULL, OPEN_EXISTING, FILE_FLAG_OVERLAPPED,NULL);
/// do lots of stuff
CloseHandle(port);
}
</code></pre>
<p>Here's the problem: "DoTheWork" is a tried and tested function, and performs correctly on it's own. It only fails when called immediately after the earlier CreateFile/CloseHandle calls, when the second CreateFile returns E_ACCESSDENIED.</p>
<p>Worse yet, if I step through the code slowly in the debugger, It works just fine.</p>
<p>It seems like I need a Sleep() after the first closeHandle, but that feels like a hack - and i have no way of knowing how long it must be.</p>
http://stackoverflow.com/questions/1307284/closing-and-immediately-re-opening-a-com-port-fails-why/1307392#13073920Answer by Roddy for Closing and immediately re-opening a COM port fails: Why?Roddy2009-08-20T16:32:35Z2009-08-20T16:32:35Z<p>Well, after more trawling, <a href="http://msdn.microsoft.com/en-us/library/aa930558%28WinEmbedded.60%29.aspx" rel="nofollow">I found this</a>, which relates to Windows CE rather than Win32.</p>
<blockquote>
<p>There is a two-second delay after
CloseHandle is called before the port
is closed and resource are freed.</p>
</blockquote>
<p>I guess the same applies to Win32, but I haven't found any documented proof.</p>
http://stackoverflow.com/questions/1304136/thread-stack-overflow/1306664#13066640Answer by Roddy for Thread stack overflow Roddy2009-08-20T14:42:02Z2009-08-20T14:42:02Z<p>There's a few techniques you can use - typically you have a low-priority task which sniffs the stack status of all other tasks every second or so.</p>
<p>a: Make sure the stack space is filled with a known pattern before your task starts. You can then find out how much 'uncorrupted' stack is left by checking for the pattern.</p>
<ul>
<li>Advantage: Lets you check the"high-watermark" of stack use. </li>
<li>Disadvantage: If you allocate stack memory, but don't write to it for some reason, this technique MAY not detect the overflow.</li>
</ul>
<p>b: You can simply sniff the stack pointer of all other threads.</p>
<ul>
<li>Disadvantage: This is just "sampling" the stack pointer, so a brief dip into overflow may not be noticed</li>
<li>Advantage: Quick and easy.</li>
</ul>
<p>I'd recommend a combination of both. Because you're doing lowlevel stuff using things like the VxWorks TaskInfoGet() functions, it's difficult to make this even remotely portable.</p>
http://stackoverflow.com/questions/1304771/c-and-c-freeing-part-of-an-allocated-pointer/1304829#130482911Answer by Roddy for C and C++: Freeing PART of an allocated pointer.Roddy2009-08-20T08:39:29Z2009-08-20T08:52:21Z<p>Don't try and second-guess memory management. It's usually cleverer than you ;-)</p>
<p>The only thing you can achieve is the first scenario to 'deallocate' the last 1K</p>
<pre><code>char * foo = malloc(4096);
foo = realloc(foo, 4096-1024);
</code></pre>
<p>However, even in this case, there is NO GUARANTEE that "foo" will be unchanged. Your entire 4K may be freed, and realloc() may move your memory elsewhere, thus invalidating any pointers to it that you may hold.</p>
<p>This is valid for both C and C++ - however, use of malloc() in C++ is a bad code smell, and most folk would expect you to use <em>new()</em> to allocate storage. And memory allocated with new() cannot be realloc()ed - or at least, not in any kind of portable way. STL vectors would be a much better approach in C++</p>
http://stackoverflow.com/questions/1304671/pixel-processing-algorithms/1304726#13047260Answer by Roddy for Pixel Processing AlgorithmsRoddy2009-08-20T08:21:22Z2009-08-20T08:34:26Z<blockquote>
<p>Where can I find articles that have a
description of how this can be
achieved?</p>
</blockquote>
<p>Have you heard of google? <a href="http://www.google.com/search?hl=en&rlz=&=&q=image+processing+algorithms" rel="nofollow">I'd start there.</a></p>
<p>Seriously, some of these (grayscale conversion, brightness, gamma correction) are all very straightforward. </p>
<p>Personally, I would pick grayscale conversion and brightness adjustment and try and implement them myself. </p>
<pre><code>FOREACH scanline
FOREACH pixel
pixelvalue = F(pixelvalue)
</code></pre>
<p>All you need to do is work out what F() might be. Experiment with some different functions to understand the effects that you get, and you'll have a good idea of what you need.</p>
<p>For the more complex algorithms (edge detection), I'd start on wikipedia.</p>
http://stackoverflow.com/questions/1291338/write-unicode-string-into-file-with-codegear-c-builder-2009/1300352#13003523Answer by Roddy for Write unicode string into file with CodeGear C++ Builder 2009Roddy2009-08-19T14:27:36Z2009-08-19T14:27:36Z<p>My first question would be "What kind of file"?</p>
<p>Assuming it's a text file rather than binary, what kind of encoding do you want on the output? UTF-8 is usually a good choice, because it's supported by stuff like notepad, and for normal "Latin" characters, there's no overhead.</p>
<p>Personally, to write 'simple' text files, I just add strings to a TStringList and then use SaveToFile method.</p>
<pre><code>TStringList *list = new TStringList;
list->Add(str1);
list->Add(str2);
...
list->SaveToFile(filename, TEncoding::UTF8);
</code></pre>
http://stackoverflow.com/questions/155241/cheapest-java-code-signing-certificate-not-self-signed/1612795#1612795Comment by Roddy on Cheapest Java Code Signing Certificate? (not self-signed)Roddy2009-12-18T10:40:21Z2009-12-18T10:40:21ZAFAICT, StartCom certificates are only 'trusted' by Windows 7, or earlier Windows versions with an appropriate root certificate upgrade installed: <a href="https://blog.startcom.org/?p=205" rel="nofollow">blog.startcom.org/?p=205</a> However, it's certainly interesting.http://stackoverflow.com/questions/1909945/force-derived-class-to-call-base-function/1909977#1909977Comment by Roddy on Force derived class to call base functionRoddy2009-12-15T20:02:18Z2009-12-15T20:02:18Z+1, I was just about to post that suggestion.http://stackoverflow.com/questions/180320/are-c-templates-just-macros-in-disguiseComment by Roddy on Are C++ Templates just Macros in disguise?Roddy2009-12-14T21:52:29Z2009-12-14T21:52:29Z@Omnifarious - was that a comment on this question, or the one that got merged with mine? This fuss over a year-dead question is doing my head in... http://stackoverflow.com/questions/180320/are-c-templates-just-macros-in-disguise/1902564#1902564Comment by Roddy on Are C++ Templates just Macros in disguise?Roddy2009-12-14T21:47:17Z2009-12-14T21:47:17Z@Gregory, thx - that explains a lot. [And no, I'm no the phantom downvoter. Better things to do with my time!]http://stackoverflow.com/questions/180320/are-c-templates-just-macros-in-disguise/1902564#1902564Comment by Roddy on Are C++ Templates just Macros in disguise?Roddy2009-12-14T21:41:49Z2009-12-14T21:41:49ZOh, and Gregory, +1 for a helpful answer with some good points.http://stackoverflow.com/questions/180320/are-c-templates-just-macros-in-disguise/1902564#1902564Comment by Roddy on Are C++ Templates just Macros in disguise?Roddy2009-12-14T21:40:36Z2009-12-14T21:40:36ZCan someone please explain why my year-old question is suddenly rattling everyone's cages? I think I must be losing the plot here...http://stackoverflow.com/questions/217549/which-typesafe-enum-in-c-are-you-using/439057#439057Comment by Roddy on Which Typesafe Enum in C++ Are You Using?Roddy2009-12-08T13:15:18Z2009-12-08T13:15:18Z@Konrad: No, I'm using one that at least two compilers support, (and I'm not using GCC 4.4). Code portability to other compilers is not an issue for me in my current projects.http://stackoverflow.com/questions/1133581/is-23-148-855-308-184-500-a-magic-number-or-sheer-chanceComment by Roddy on Is 23,148,855,308,184,500 a magic number, or sheer chance?Roddy2009-11-27T11:19:45Z2009-11-27T11:19:45ZScary. I hgad to "favourite" my own question just to get it past the 127 value!http://stackoverflow.com/questions/3337/what-programming-language-do-you-wish-would-catch-on/233485#233485Comment by Roddy on What programming language do you wish would catch on?Roddy2009-11-23T10:52:10Z2009-11-23T10:52:10Z@Dan, It's not that assembler interests me - far from it - it's that coders who don't understand <i>anything</i> about assembler are IMO like architects who don't understand the properties of steel and concrete http://stackoverflow.com/questions/1766790/opening-a-file-with-path-in-malloc/1766890#1766890Comment by Roddy on Opening a file with path in mallocRoddy2009-11-19T22:18:32Z2009-11-19T22:18:32Z+1 - good catch!http://stackoverflow.com/questions/1754503/logging-safely-from-a-worker-thread/1755147#1755147Comment by Roddy on Logging safely from a worker thread?Roddy2009-11-18T12:11:58Z2009-11-18T12:11:58ZI'm not familiar with signals in QT, but can the actual message to be logged form part of the "signal"? http://stackoverflow.com/questions/217549/which-typesafe-enum-in-c-are-you-using/439057#439057Comment by Roddy on Which Typesafe Enum in C++ Are You Using?Roddy2009-10-27T12:06:43Z2009-10-27T12:06:43ZWhy not ask stackoverflow? :-)
<a href="http://stackoverflow.com/questions/934183/good-urls-for-tracking-implementation-progress-of-c0x-in-msvc-and-gcc" rel="nofollow" title="good urls for tracking implementation progress of c0x in msvc and gcc">stackoverflow.com/questions/934183/…</a>http://stackoverflow.com/questions/697093/how-to-quickly-verify-the-case-sensitive-filename-really-exists/697149#697149Comment by Roddy on how to quickly verify the case sensitive filename really existsRoddy2009-09-30T19:27:15Z2009-09-30T19:27:15ZJust a small point, butg iven a file "C:\Folder\File.txt"; FileExistsEx("c:\fOlDeR\File.txt") will return true, which may not be what you wanted...http://stackoverflow.com/questions/1378219/do-standard-windows-ini-files-allow-comments/1378239#1378239Comment by Roddy on Do standard windows .ini files allow comments?Roddy2009-09-05T11:49:53Z2009-09-05T11:49:53ZYes, the spec link isn't really very helpful.http://stackoverflow.com/questions/28080/how-bad-is-dynamic-casting/303326#303326Comment by Roddy on How bad is dynamic casting?Roddy2009-09-04T08:17:16Z2009-09-04T08:17:16Zclass name string tables? Surely it's just working with VMT pointers...??? Well, I guess I need to measure it...