2,284 reputation
79
bio website
location
age
visits member for 4 years, 2 months
seen 10 hours ago
stats profile views 137

2d
comment read data RS232 without polling
QExtSerialPort works well in my experience on Qt 4.8
2d
comment Gaussian Blur of 3D Data
Extra +++ for the linearly separable solution (#1)
May
16
comment Should this code cause a warning
@AndreyCpp Still not a good idea. There is a reason this rule is part of MISRA. Likewise, it's a routine check in all the static analysis tools I've used. Take a look at this link: securecoding.cert.org/confluence/display/seccode/…
May
9
comment C++ Lookup of i changed for ISO
Move the declaration of i to appear above the for loop.
May
2
comment c++ recursion in large number class
"Anyhow, it's more obfuscated than messy". I'm totally stealing that for the next code review...
Apr
26
comment Read PPM image issues
Your shift-and-OR pixel assignment is accomplished in the first four lines of the for loop (i.e. pixel.alpha = 255,etc). The generated code should be equivalent, but the struct method is easier to read/debug. How is the pixels attribute organized? Are you sure its ARGB as your shift and OR assignment assumes? Are you certain that the defect is not in your image viewing process?
Apr
26
answered Read PPM image issues
Apr
25
answered How to get Image matrix of an image using libjpeg
Apr
24
awarded  Nice Answer
Apr
24
answered How to remove false detections?
Apr
24
comment How to remove false detections?
@Shiyu: Take a look at this paper. bmva.org/bmvc/1988/avc-88-041.pdf
Apr
24
comment How to remove false detections?
@Shiyu: Have you confirmed that the Hough circles technique is too slow for your application?
Apr
23
comment How to remove false detections?
It appears your algorithm missed the two ellipses in the lower right corner (the "figure 8"). Is this a problem? Note that the Hough method found them.
Apr
12
comment Does the working of sizeof operator different in c andd c++
No, it's a double. 3.14f is a float.
Apr
11
comment Library of JPEG images for decoder testing?
Can you clarify this answer? Body?
Apr
11
comment How to pass argument through signal and slots?
If you wish the slot to modify the QString, then you probably need to rethink the design. Nasty issues can arise.
Apr
11
comment How to pass argument through signal and slots?
As for const QString &, I'm assuming that the slot implementation does not need to modify the QString s. If so, a pass-by-value (i.e. QString s), will make a needless copy of the QString object. On the other hand, passing the QString by reference (QString &) allows the compiler to pass a more efficient reference (in essence a pointer to the object). Adding the const qualifier assures that the compiler is aware that the QString is not expected to be modified. (Indeed, the compiler will assert an error if you attempt to modify a const object).
Apr
11
comment How to pass argument through signal and slots?
As you state, which is "cleaner" depends. What does cleaner mean? Easier to read? Easier to debug? Easier on the compiler? The developer is usually the weakest link, so bias "cleaner" accordingly. Map signals and slots clearly to their respective widgets (with meaningful names, etc.). Let the QT moc and gcc worry about the number of calls. Simple chained function calls will likely be optimized anyway. Lastly, the seeming duplication of calls will be dependent on your implementation: how many pushbuttons are there? what exactly do they need to convey>?, etc.
Apr
11
answered How to pass argument through signal and slots?
Mar
6
awarded  Yearling