User kigurai - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T11:24:34Zhttp://stackoverflow.com/feeds/user/13565http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1929410/smoothening-the-lines-of-the-segmented-image/1930174#19301740Answer by kigurai for Smoothening the lines of the segmented imagekigurai2009-12-18T19:18:44Z2009-12-18T19:18:44Z<p>I think you should ask yourself why it has to be smoother. If you have segmented an image and gotten that result, are you sure that smoothening will give you a correct result?
If it does then Steve Eddins answer seems to do the trick.</p>
<p>If, on the other hand, the object you are trying to segment is much smoother than the result I'd suggest one of two approaches.</p>
<ol>
<li><p>If the target object is a cross (two lines), I'd probably calculate the lines and change the representation to two line segments. These can then be rendered at whatever precision and smoothness. To do this you could either find the center and rotation using some kind of feature detection algorithm, or you could use hough transforms to find the lines. The latter is probably much simpler.</p></li>
<li><p>If the target can have any form then I'd look into a better segmentation algorithm. There are segmentation algorithms that is not based on hard thresholds. I have used graph partitioning algorithms for this, and while slow, they work well.</p></li>
</ol>
http://stackoverflow.com/questions/1873405/writing-lzw-program-in-matlab/1873590#18735902Answer by kigurai for writing LZW program in matlabkigurai2009-12-09T12:29:01Z2009-12-09T12:29:01Z<p>There is a <code>containers.Map</code> class available in newer verisons of MATLAB.</p>
<pre><code>help containers.Map
</code></pre>
<p>should get you going.</p>
http://stackoverflow.com/questions/1871852/best-threshold-for-converting-grayscale-to-black-and-white/1872315#18723150Answer by kigurai for Best threshold for converting grayscale to black and whitekigurai2009-12-09T08:00:43Z2009-12-09T08:00:43Z<p>I would look into an adaptive thresholding algorithm. One such, which is not very hard to implement is <a href="http://en.wikipedia.org/wiki/Otsu%27s%5FMethod" rel="nofollow">Otsus method</a>.</p>
<p>It works by assuming that you have foreground pixels and background pixels and attempts to find the best separation of them.</p>
http://stackoverflow.com/questions/1852785/running-code-in-matlab-mathematica-only-after-having-written-it-all/1852811#18528118Answer by kigurai for Running code in MatLab/Mathematica only after having written it allkigurai2009-12-05T17:28:11Z2009-12-05T17:28:11Z<p>If you write your code in code files (.m extension) then you can run it all at once.</p>
<p>Run:</p>
<blockquote>
<blockquote>
<p>edit <code>my_matlab_file</code></p>
</blockquote>
</blockquote>
<p>and then write your code in the editor. Save the file.
To run what you just coded you have a few options:</p>
<ol>
<li><p>In the command line do</p>
<blockquote>
<blockquote>
<p>my_matlab_file</p>
</blockquote>
</blockquote></li>
<li><p>In the editor press the "Evaluate" button (little green thingy)</p></li>
<li><p>In the editor, press Ctrl+ENTER.</p></li>
</ol>
<p>For more control you can also divide your file into cells which can be evaluated separately using Ctrl+ENTER:</p>
<p><code>my_matlab_file.m</code>:</p>
<pre><code>%% Initialization (Cell 1)
x = 1;
y = 2;
%% Calculation (Cell 2)
z = x + y
</code></pre>
<p>This is really useful when you have a long file that takes a long time to execute and you have to make changes somewhere. Instead of rerunning everything you can evaluate only the cell where you made your updates.</p>
<p>.m-files can also be used to create functions. Example (mymeanfund.m)</p>
<pre><code>function y = mymeanfunc(x)
% Y = MYMEANFUNC(X) calculates the mean of X
y = sum(X(:)) / numel(X)
</code></pre>
<p>and run it by calling it:</p>
<pre><code>>> m = mymeanfunc([1 2 3 4])
m = 2.5
</code></pre>
<p>As a side note, since more recent versions of MATLAB it is also perfectly possible to develop using OOP.</p>
http://stackoverflow.com/questions/1852573/database-structure-question/1852585#18525850Answer by kigurai for Database structure questionkigurai2009-12-05T16:11:16Z2009-12-05T16:11:16Z<p>What I would do is create some sort of "Notification" entity (a table). Then you can either let your database-client code insert a new notification when someone adds a new project. Or you could do it automatically using <a href="http://dev.mysql.com/doc/refman/5.0/en/triggers.html" rel="nofollow">triggers</a> in the database itself.</p>
<p>Exactly how you design the notifications (which tables and which attributes are needed) is really up to the design of your application.</p>
http://stackoverflow.com/questions/1850534/matlab-storing-results-of-a-operation-in-a-matrix/1851545#18515451Answer by kigurai for [Matlab] Storing Results of a Operation in a Matrixkigurai2009-12-05T08:05:48Z2009-12-05T08:05:48Z<p>As others have already pointed out there are for-loops in MATLAB as well.</p>
<pre><code>help for
</code></pre>
<p>should give you everything you need about how it works. The difference from C is that the loop can go over objects and not only an integer:</p>
<pre><code>objects = struct('Name', {'obj1', 'obj2'}, 'Field1', {'Value1','Value2'});
for x = objects
disp(sprintf('Object %s Field1 = %d', x.Name, x.Field1))
end
</code></pre>
<p>That example will output:</p>
<pre><code>Object obj1 Field1 = Value1
Object obj2 field1 = Value2
</code></pre>
<p>This could have been done as</p>
<pre><code>for i=1:length(objects)
x = objects(i);
disp(sprintf('Object %s Field1 = %d', x.Name, x.Field1))
end
</code></pre>
<p>And now to what I really wanted to say: <strong>If you ever write a for loop in MATLAB, stop and think!</strong>. For most tasks you can vectorize the code so that it uses matrix operations and builtin functions instead of looping over the data. This usually gives a <strong>huge speed gain</strong>. It is not uncommon that vectorized code executes 100x faster than looping code. Recent versions of MATLAB has JIT compilation which makes it less dramatic than before, but still: <strong>Always vectorize if you can</strong>.</p>
http://stackoverflow.com/questions/1847821/color-detection-using-ycrcb-color-space/1847841#1847841-1Answer by kigurai for Color Detection using YCrCb color space?kigurai2009-12-04T15:51:04Z2009-12-04T15:51:04Z<p>I suggest you instead use <a href="http://en.wikipedia.org/wiki/HSL%5Fand%5FHSV" rel="nofollow">HSV colour space</a> which will most likely make this a lot easier.</p>
http://stackoverflow.com/questions/1846635/calculate-most-common-values/1846716#18467161Answer by kigurai for Calculate most common valueskigurai2009-12-04T12:38:27Z2009-12-04T14:36:23Z<p>This is easily solved using arrayfun()</p>
<pre><code>A = [...]; % Your target matrix with values 65:90
labels = 65:90 % Possible values to look for
nTimesOccured = arrayfun(@(x) sum(A(:) == x), labels);
[sorted sortidx] = sort(nTimesOccured, 'descend');
B = [labels(sortidx(1:10))' sorted(1:10)'];
</code></pre>
http://stackoverflow.com/questions/1832429/how-do-i-use-the-least-squares-approximation-in-matlab/1832464#18324641Answer by kigurai for How do I use the least squares approximation in MATLAB?kigurai2009-12-02T11:55:40Z2009-12-02T11:55:40Z<p><strong>mldivide</strong>, ("*<em>\*</em>") actually does that too. According to the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/mldivide.html" rel="nofollow">documentation</a>:</p>
<blockquote>
<p>If A is an m-by-n matrix with m ~= n and B is a column vector with m components, or a matrix with several such columns, then X = A\B is the solution in the least squares sense to the under- or overdetermined system of equations AX = B. In other words, X minimizes norm(A*X - B), the length of the vector AX - B. The rank k of A is determined from the QR decomposition with column pivoting (see Algorithm for details). The computed solution X has at most k nonzero elements per column. If k < n, this is usually not the same solution as x = pinv(A)*B, which returns a least squares solution.</p>
</blockquote>
<p>So really, what you did in the first assignment was to solve the equation using LSE.</p>
http://stackoverflow.com/questions/1824890/how-to-detect-and-correct-broken-lines-or-shapes-in-a-bitmap/1825116#18251160Answer by kigurai for How to detect and correct broken lines or shapes in a bitmap?kigurai2009-12-01T09:47:11Z2009-12-01T09:47:11Z<p>The simplest approach is to use a morphological technique called <a href="http://en.wikipedia.org/wiki/Closing%5F%28morphology%29" rel="nofollow">closing</a>.
This will work only if the gaps in the lines are quite small in relation to how close the different lines are to each other.</p>
<p>How you choose the structuring elemt to perform the closing can also make performance better or worse.</p>
<p>The Wikipedia article is very theoretical (or mathematical) so you might want to turn to Google or any book on Image Processing to get a better explanation on how it is done.</p>
http://stackoverflow.com/questions/1821811/go-how-to-read-write-to-file/1821840#18218400Answer by kigurai for Go - How to read/write to file?kigurai2009-11-30T19:22:41Z2009-11-30T19:22:41Z<p>Just looking at the documentation it seems you should just declare a buffer of type []byte and pass it to read which will then read up to that many characters and return the number of characters actually read (and an error).</p>
<p><a href="http://golang.org/pkg/os/#File.Read" rel="nofollow">The docs</a> say</p>
<blockquote>
<p>Read reads up to len(b) bytes from the File. It returns the number of bytes read and an Error, if any. EOF is signaled by a zero count with err set to EOF.</p>
</blockquote>
<p>Does that not work?</p>
<p>EDIT: Also, I think you should perhaps use the Reader/Writer interfaces declared in the <em>bufio</em> package instead of using <em>os</em> package.</p>
http://stackoverflow.com/questions/1815948/good-book-on-computer-vision-algorithms-in-c-with-easy-to-understand-code-samp/1818839#18188391Answer by kigurai for Good book on computer vision algorithms in C++ (with easy to understand code samples)kigurai2009-11-30T09:51:32Z2009-11-30T09:51:32Z<p>There are a number of thread on SO about this already. I found a few for you:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/711057/learning-about-computer-vision">http://stackoverflow.com/questions/711057/learning-about-computer-vision</a></li>
<li><a href="http://stackoverflow.com/questions/98438/what-are-some-good-computer-vision-reference-books">http://stackoverflow.com/questions/98438/what-are-some-good-computer-vision-reference-books</a></li>
</ul>
<p>And forget about using a specific language. Although learning MATLAB is not a bad idea, if you can afford the license.</p>
<p>More important than programming language is to have solid mathematical skills. Linear Algebra, Calculus and Mathematical Statistics is a must to even begin to understand most of the stuff. Some Signal Processing basics are also worth a lot.</p>
http://stackoverflow.com/questions/1803053/set-of-n-linear-equations-in-matlab/1809131#18091310Answer by kigurai for set of n-linear equations in matlabkigurai2009-11-27T14:35:51Z2009-11-27T14:35:51Z<p>The absolutely fastest way to solve linear equations in MATLAB is simply to setup your equation on the form </p>
<pre><code>AX = B
</code></pre>
<p>and then solve by</p>
<pre><code>X = A\B
</code></pre>
<p>You can issue </p>
<pre><code>help mldivide
</code></pre>
<p>to find more information on matrix division and what limitations it has.</p>
http://stackoverflow.com/questions/1786267/resources-for-image-recognition/1788563#17885631Answer by kigurai for Resources for Image Recognitionkigurai2009-11-24T08:05:18Z2009-11-24T08:05:18Z<p>Be aware that Computer Vision is in general very math heavy, so if you feel that your linear algebra skills are not up to date, then update them before attempting to read anything. Knowing your way around some basic signal processing will also be of great help.</p>
<p>For basic shape recognition like lines and circles an edge detector coupled with a simple(?) Hough transform could be enough to do the trick.</p>
<p>If you want to find other stuff that is not faces or basic shapes (cars, people, ...) then you are in for some really heavy reading as this is a quite large area of research with lots of different methods for feature extraction and classification.</p>
<p>If you want to look at faces only, then I suggest finding literature that deals with this specifically to not drown in a sea of math heavy information.</p>
http://stackoverflow.com/questions/1781970/multiplying-a-tuple-by-a-scalar/1781987#17819872Answer by kigurai for Multiplying a tuple by a scalarkigurai2009-11-23T09:22:41Z2009-11-23T09:22:41Z<p>Might be a nicer way, but this should work</p>
<pre><code>tuple([10*x for x in img.size])
</code></pre>
http://stackoverflow.com/questions/1777425/when-not-to-vectorize-matlab/1781702#17817020Answer by kigurai for When not to vectorize matlab?kigurai2009-11-23T08:03:43Z2009-11-23T08:03:43Z<p>To answer the question "When not to vectorize MATLAB code" more generally:</p>
<p>Don't vectorize code if the vectorization is not straight forward and makes the code very hard to read. This is under the assumption that </p>
<ol>
<li>Other people than you might need to read and understand it. </li>
<li>The unvectorized code is fast enough for what you need.</li>
</ol>
http://stackoverflow.com/questions/119562/tabs-versus-spaces-in-python-programming15Tabs versus spaces in Python programmingkigurai2008-09-23T07:26:00Z2009-11-21T22:30:21Z
<p>I have always used tabs for indentation when I do Python programming. But then I came across a question here on SO where someone pointed out that most Python programmers use spaces instead of tabs to minimize editor-to-editor mistakes.</p>
<p>How does that make a different? Are there other reasons why you would use spaces instead of tabs for Python? Or is it simply not true?</p>
<p>Should I switch my editor to insert spaces instead of tabs right away or keep on going like I used to?</p>
http://stackoverflow.com/questions/1742268/how-to-stop-sound-in-matlab/1742704#17427042Answer by kigurai for How to stop sound in MATLAB?kigurai2009-11-16T15:01:40Z2009-11-16T15:01:40Z<p>Never used "sound()" but when I have played audio using wavplay(..., ..., 'async') I can stop the sound by issuing</p>
<pre><code>clear playsnd
</code></pre>
<p>Maybe that works with sound() as well?
Note: This is when playing asynchronously. For synchronous playback I assume that CTRL-C should break it, but I had issues with wavplay() last time I tried that.</p>
http://stackoverflow.com/questions/1737960/mean-filter-for-smoothing-images-in-matlab/1741762#17417621Answer by kigurai for Mean filter for smoothing images in Matlabkigurai2009-11-16T12:01:20Z2009-11-16T12:01:20Z<p>I see good answers have already been given, but I thought it might be nice to just give a way to perform mean filtering in MATLAB using no special functions or toolboxes. This is also very good for understanding exactly how the process works as you are required to explicitly set the convolution kernel. The mean filter kernel is fortunately very easy:</p>
<pre><code>I = imread(...)
kernel = ones(3, 3) / 9; % 3x3 mean kernel
J = conv2(I, kernel, 'same'); % Convolve keeping size of I
</code></pre>
<p>Note that for colour images you would have to apply this to each of the channels in the image.</p>
http://stackoverflow.com/questions/997325/directly-accessing-the-modem-in-windows-mobile2Directly accessing the modem in Windows Mobilekigurai2009-06-15T17:29:43Z2009-10-16T04:53:20Z
<p>For some reasons I need to be able to access the internal modem of a Windows Mobile smartphone (a HTC s740 with WM version 6.1). What I want is to be able to access it like it was a serial port in order to give AT-commands.</p>
<p>I have code that uses the TAPI Line interface and lineGetID() to get a "handle" on which I shuld be able to do ReadFile()/WriteFile(). Sadly I have not gotten it to work.</p>
<p>What I do currently is:</p>
<ol>
<li><p>Initialize TAPI with lineInitializeEx()</p></li>
<li><p>Open the Line with lineOpen()</p></li>
<li><p>Iterate through each available device and get info. Currently I am selecting the "UNIMODEM"/"Hayes compatible on COM1" device. But maybe I should choose the "TAPI cellular service"/"Cellular Line" instead? I have tried the "Cellular Line" device with the same result.</p></li>
<li><p>Use lineGetID() on the selected device to get a handle.</p></li>
<li><p>Do WriteFile("AT\r") and then directly do a ReadFile(), which should give me a "OK" back if it really was the modem I accessed.</p></li>
<li><p>Realize that it doesn't work and get annoyed...</p></li>
</ol>
<p>But this has so far been a no-go.</p>
<p>Does anyone have any idea on how to do it?</p>
<p>I am doing this in Native WIN32 C++ on Windows Mobile 6 SDK.</p>
<p>UPDATE:
I have so far managed to get a data connection between two phones using RIL, which gives me a serial port handle to write and read from. BUT, I still would like to be able to interact directly with the modem to send AT-commands. So, the bounty I am starting only concerns getting direct access to the modem in order to give AT-commands. My investigations so far indicates that this was possible in previous versions of Windows Mobile (by opening COM2 and/or COM9 and slaying RIL, or something like that) but I have not yet seen code which works on WM6.</p>
http://stackoverflow.com/questions/1365234/opencv-detect-blinking-lights-in-a-video-feed/1366960#13669605Answer by kigurai for OpenCV: Detect blinking lights in a video feedkigurai2009-09-02T10:42:21Z2009-09-02T10:42:21Z<p>Threshold each image in the sequence with a threshold that makes the LED:s visible. If you can threshold it with a threshold that <em>only</em> keeps the LED and removes background then you are more or less finished since all you need to do now is to keep track of each position that has seen a LED and count how often it occurs.</p>
<p>As a middle step, if there is "background noise" in the thresholded image would be to use erosion to remove small mistakes, and then maybe dilate to "close holes" in the blobs you are actually interested in.</p>
<p>If the scene is static you could also make a simple background model by taking the median of a few frames and removing the resulting median image from any frame and threshold that. Stuff that has changed (your LEDs) will appear stronger.</p>
<p>If the scene is moving I see no other (easy) solution than making sure the LED are bright enough to be able to use the threshold approach given above.</p>
<p>As for OpenCV: if you know what you want to do, it is not very hard to find a function that does it. The hard part is coming up with a method to solve the problem, not the actual coding.</p>
http://stackoverflow.com/questions/1360940/finding-image-shift/1361559#13615591Answer by kigurai for finding Image shift kigurai2009-09-01T09:49:44Z2009-09-01T09:49:44Z<p>If the images are very similar such that the camera is only slightly moved and rotated then the problem could be solved without using highly complex techniques.
What I would do, in that case, is use a motion tracking algorithm to get the <em>optical flow</em> of the image sequence which is a "map" which approximates how a pixel has "moved" from image A to B. OpenCV which is indeed a very good library has functions that does this: <em>CalcOpticalFlowLK</em> and <em>CalcOpticalFlowPyrLK</em>.</p>
<p>The tricky bit is going from the optical flow to total rotation of the image. I would start by heavily low pass filter the optical flow to get a smoother map to work with.
Then you need to use some logic to test if the image is only shifted or rotated. If it is only shifted then the entire map should be one "color", i.e. all flow vectors point in the same direction.
If there has been a rotation then the vectors will point in different direction depending on the rotation.</p>
<p>If the input images are not as nice as the above method requires, then I would look into feature descriptors to find how a specific object in the first image is located within the second. This will however be much harder.</p>
http://stackoverflow.com/questions/1230065/speedup-matlab-to-c-conversion/1232558#12325581Answer by kigurai for Speedup Matlab to C++ Conversionkigurai2009-08-05T11:05:52Z2009-08-05T11:05:52Z<p>For image processing you can get a noticable speedup. But this really depends on how good you are at writing MATLAB code. Lots of things can be vectorized or be taken care of by built in functions. That kind of code is blazing fast.</p>
<p>However, if you find your code to consist of a lot of loops (like say, looping over all pixels in an image) it is going to be incredibly slow and vectorization can give 100x speedup or more.</p>
<p>If your code is very hard to do "right" in MATLAB, then switching to C can be a viable option. I did a computer vision project at school (3D point reconstruction) which clearly showed this. When our project, which was implemented in C++ and OpenCV, was finished calculating, one of the other groups projects had hardly even loaded the images yet. Theirs were written in MATLAB. We never timed it, but my <em>guess</em> is that our version ran about 10 times faster.</p>
<p>But then again, their MATLAB code was probably not optimized at all. So it's not really useful as a benchmark.</p>
http://stackoverflow.com/questions/1219752/compile-c-over-ftp/1219792#12197921Answer by kigurai for Compile C++ over FTPkigurai2009-08-02T20:44:24Z2009-08-02T20:44:24Z<p>If you are using a Linux system (and probably any *nix or BSD flavout as well) then yes it is possible if the ftp-server is mounted as a filesystem on your machine, like Tyler McHenry wrote.</p>
<p>It is however not neccessary to "look into FTPFS" if you are using any recent Gnome-based distro. In Ubuntu (9.04) I can do "Places"->"Connect to server" and choose FTP. Then, when the folder is opened in Nautilus you can find the mounted directory in ~/.gvfs/ and then you should be able to compile it without any trouble at all.</p>
<p>I would be very surprised if KDE did not have the same feature, but the directory will be mounted somewhere else.</p>
http://stackoverflow.com/questions/1211757/detect-an-object-in-a-camera-image-in-c/1218378#12183781Answer by kigurai for Detect an object in a camera image in C#kigurai2009-08-02T07:59:57Z2009-08-02T08:05:34Z<p>I would start by using a corner detector (The Harris detector works nice) to find the intersections and corners of the sudoku grid.</p>
<p>Then I would use those points to do an image rectification to transform the image to have the grid as rectangular as possible. Now you should have no trouble finding each square to do OCR.</p>
<p>Image rectification is not simple and entails quite a lot of math.</p>
<p>Be prepared to do some reading :)</p>
<p>If the images of the game boards are already close to rectangular you can of course skip the rectification part and directly use the corner points to find your squares for OCR.</p>
<p>A lot of people have been suggesting to use Neural Networks. I am quite certain that throwing a neural network on this problem is totally unneccessary. NNs are (sometimes) good if you need to classify objects where the definition of the object is vague. "Find cars in image" is a problem which could have use for a Neural Network since cars can look very different but have some features the same. Thus, given enough data, you can train your NN to detect cars.
In this problem you have something that is very regular and always looks almost the same, so a NN will not make anything easier or better.</p>
http://stackoverflow.com/questions/1211179/what-does-wolfram-mathematica-7-offer-for-cs-cen-students/1215172#12151723Answer by kigurai for What does Wolfram Mathematica 7 offer for CS/CEN students?kigurai2009-07-31T22:24:10Z2009-07-31T22:24:10Z<p>For computer engineering (and engineering in general, I suppose) I would say that MATLAB is more relevant. Maybe it doesn't do symbolic math quite as well as Mathematica (though there is a symbolic math toolbox that works quite well) but in engineering you are mostly looking for a numeric approximation anyway, so it won't matter.</p>
<p>MATLAB is insanely good for solving anything that has to do with matrices (and, incidentally, everything seems to be ;)) and has a toolbox for anything you might want to do from signal processing, automatic control, LEGO Mindstorms programming.</p>
<p>I am soon finished with my Masters in Computer engineering and I have never used Mathematica in any course, even though it is installed on quite a lot of the machines at the university. MATLAB, on the other hand, is used frequently in all sorts of engineering courses.</p>
http://stackoverflow.com/questions/1210934/sms-by-at-commands-with-gsm-mobile-is-giving-error/1210978#12109780Answer by kigurai for SMS by AT commands with GSM mobile is giving error kigurai2009-07-31T06:35:30Z2009-07-31T06:35:30Z<p>Try to see if there is a pattern to the messages which are not sent. Because then there might be a problem with the number format or invalid characters in the message.</p>
<p>Also, some notes:</p>
<ol>
<li><p>You are not doing any error checking. I would make sure that I got the expected reply after calling each command.</p></li>
<li><p>You are using Environment.NewLine to finish each row. I assume that this is a property that changes with the underlying operating system. The AT standard is however very clear on exactly which characters to use for terminating commandlines.</p></li>
<li><p>Mobile phones are real bastards. Just because YOU follow the specification or documentation does not mean they do. Assume that each phone model behaves different from all other. See point 1.</p></li>
</ol>
http://stackoverflow.com/questions/1202073/making-a-bigger-image-by-stitching-the-others-together/1204888#12048880Answer by kigurai for making a bigger image by stitching the others togetherkigurai2009-07-30T06:58:38Z2009-07-30T06:58:38Z<p>A <em>very</em> basic approach is to take your target image (the image which you want your synthesized image to look like) and cut it out to smaller images into an image set we can call T.</p>
<ol>
<li><p>Find the "mean color" of each image in T.</p></li>
<li><p>Take your set of friend images, let's call that set F, and find the "mean color" of each of those.</p></li>
<li><p>Now match each image in T with an image in F so that the distance between colors is as small as possible. Here you'll have to consider whether you allow the same image in F to be used for more than one image in T.</p></li>
</ol>
<p>A slightly less basic approach would be to (using same sets as above):</p>
<ol>
<li><p>Mean filter each image in T and F (as in blurring them)</p></li>
<li><p>Match each image in T with an image in F by using least square error calculations.</p></li>
</ol>
<p>Other more advanced approaches I can think of, but which are a lot more math heavy are:</p>
<ul>
<li>Using Principal Component Analysis to pick out Principal Components from F and T and match those.</li>
<li>Using any kind of descriptor (SIFT, SURF, ...) to find an image in F in the target image. This would allow you to have an uneven grid, or really no grid at all where two images in F may very well end up having vastly different sizes in the resulting image.</li>
</ul>
<p>As for framework I don't think it matters at all. What you need though is a good image library to make manipulating images easier.</p>
http://stackoverflow.com/questions/1192297/constructing-a-bitmap-from-code-what-steps-are-necessary/1192729#11927290Answer by kigurai for Constructing a bitmap from code; what steps are necessary?kigurai2009-07-28T08:41:20Z2009-07-28T08:41:20Z<p>Your formula for calculating grayscale is normally not the one used. Granted, it will work pretty well but you most likely want to keep to the standard.
The eye is more receptive to some colors (green) so you usually use another weighing. I would set the color like this;</p>
<pre><code>c.R = 0.3 * data[i];
c.G = 0.59 * data[i];
c.B = 0.11 * data[i];
c.A = 1;
</code></pre>
<p>See <a href="http://en.wikipedia.org/wiki/Grayscale#Converting%5Fcolor%5Fto%5Fgrayscale" rel="nofollow">Wikipedia article on Grayscale</a> for more information</p>
http://stackoverflow.com/questions/1162669/find-bounding-rectangle-of-objects-in-monochrome-bitmaps/1177007#11770070Answer by kigurai for Find bounding rectangle of objects in monochrome bitmapskigurai2009-07-24T11:10:32Z2009-07-24T11:10:32Z<p>What I would do is to look at any labeling algorithm. One which is easy to implement is the "Run-Track" algorithm.
Then when your labeling is done you could find the (top, left, right, bottom) extreme pixels of each labeled object.
It might not be the fastest way (since you will be scannning the image multiple times), but it will be easy to implement.</p>
<p>Here are lecture slides that (shortly) describe the RT-algorithm (along with one other): <a href="http://www.cvl.isy.liu.se/Education/UnderGraduate/TSBB08/DBgrk7.pdf" rel="nofollow">http://www.cvl.isy.liu.se/Education/UnderGraduate/TSBB08/DBgrk7.pdf</a></p>
http://stackoverflow.com/questions/1929106/inserting-lines-of-pixels-into-an-image-quicklyComment by kigurai on Inserting lines of pixels into an image quicklykigurai2009-12-18T19:31:06Z2009-12-18T19:31:06ZDo you need to every insert to be written to disk, or can disk writing be delayed so that multiple inserts can be made before writing it?
If so maybe not keeping continuos memory for the data but some kind of linked list approach could work. There would (maybe) be a speed penalty when writing to disk, but if you don't have to hammer the disk every time you do an insert that could make it faster overall.http://stackoverflow.com/questions/1929890/batch-processing-image-files-in-matlab/1930050#1930050Comment by kigurai on Batch Processing Image Files in MATLABkigurai2009-12-18T19:27:45Z2009-12-18T19:27:45Z+1: Should solve the problem, and I also believe a hough transform would be a better approach to solve the problem.http://stackoverflow.com/questions/1929410/smoothening-the-lines-of-the-segmented-image/1929430#1929430Comment by kigurai on Smoothening the lines of the segmented imagekigurai2009-12-18T19:20:03Z2009-12-18T19:20:03ZI am a bit unsure if image segmentation could qualify as "sampling".http://stackoverflow.com/questions/1927229/why-are-rtos-coded-only-in-c/1927240#1927240Comment by kigurai on why are RTOS coded only in c?kigurai2009-12-18T09:42:30Z2009-12-18T09:42:30ZReal time is not (only) about being fast. It's about having a predictable runtime.http://stackoverflow.com/questions/1918263/reading-pixels-of-image-in-c/1918397#1918397Comment by kigurai on Reading Pixels of Image in C++kigurai2009-12-17T11:08:23Z2009-12-17T11:08:23ZOpenCV is overkill for just reading images.http://stackoverflow.com/questions/1914430/calculating-corresponding-pixelsComment by kigurai on Calculating corresponding pixelskigurai2009-12-16T15:57:52Z2009-12-16T15:57:52ZI suppose you have already considered doing the tracking with only the range camera (or with the normal camera)?http://stackoverflow.com/questions/1908124/rsa-key-generator-using-vhdlComment by kigurai on rsa key generator using vhdlkigurai2009-12-15T15:18:08Z2009-12-15T15:18:08Z@Mitch: Awww...come on! It's christmas! ;)http://stackoverflow.com/questions/1906820/how-might-i-go-about-using-java-to-configure-a-routerComment by kigurai on How might I go about using Java to configure a router?kigurai2009-12-15T11:42:16Z2009-12-15T11:42:16ZThis will vary depending on the router, so you will have to give some information about which router you want to configure.http://stackoverflow.com/questions/1897890/c-function-which-is-able-to-realize-basic-arithmetic-operations-in-different-baComment by kigurai on C++ function which is able to realize basic arithmetic operations in different baseskigurai2009-12-14T14:13:51Z2009-12-14T14:13:51ZYour baseconv() function seems to be invalid. Both syntactically (baseName and BaseName?) and algorithmically.http://stackoverflow.com/questions/1894527/matlab-polygon-problemComment by kigurai on Matlab polygon problemkigurai2009-12-12T21:45:32Z2009-12-12T21:45:32ZIf you don't write a good question, don't be an asshole about not getting a perfect answer.http://stackoverflow.com/questions/1877405/detecting-grayscale-images-with-net/1877420#1877420Comment by kigurai on Detecting grayscale images with .Netkigurai2009-12-11T07:55:39Z2009-12-11T07:55:39ZOn second though, I might have mixed things up in my head and made a bit too quick judgement. Removing my previous comment, and the downvote.http://stackoverflow.com/questions/1873832/how-do-i-compare-two-integers/1873849#1873849Comment by kigurai on How do I compare two Integers?kigurai2009-12-09T15:11:19Z2009-12-09T15:11:19Z@Joonas: But that sounds like something the JIT compiler in the JVM would take care of pretty easy anyway?http://stackoverflow.com/questions/1872595/how-bad-are-usernames-and-passwords-stored-in-hidden-form-fieldsComment by kigurai on How bad are usernames and passwords stored in hidden form fields?kigurai2009-12-09T09:26:32Z2009-12-09T09:26:32ZAnd can you explain why you need to pass them around?http://stackoverflow.com/questions/1870929/how-to-get-a-quantitative-comparison-of-two-signals/1872112#1872112Comment by kigurai on How to Get a Quantitative Comparison of Two Signalskigurai2009-12-09T08:11:21Z2009-12-09T08:11:21ZI don't think 2D cross-correlation will work at all given the order of rows and the sign is mixed. There should be no relevant structural information to use.http://stackoverflow.com/questions/1868009/speed-up-matrix-addition-in-c/1868047#1868047Comment by kigurai on Speed up Matrix Addition in C#kigurai2009-12-09T08:04:47Z2009-12-09T08:04:47Z@Henrik, @dfa: The time complexity is O(N), linear. It depends on the number of elements, not the number of rows. There is nothing in the problem formulation that says that the matrix is square.