0
votes
1answer
69 views
EmguCV/OpenCV Image addition/subtraction
I am using EmguCV and am trying to subtract 2 images to create a filter similar to AForge .NET's MoveTowards filter.
This is what my slightly modified version from the above URL tries to do. Given 2 …
1
vote
5answers
152 views
Subtraction between two sql queries
I have 2 queries in MS SQL that return a number of results using the COUNT function.
I can run the the first query and get the first result and then run the other one to get the other result, …
10
votes
10answers
692 views
Why is subtraction faster than addition in Python?
I was optimising some Python code, and tried the following experiment:
import time
start = time.clock()
x = 0
for i in range(10000000):
x += 1
end = time.clock()
print '+=',end-start
start = …
3
votes
5answers
286 views
Floating Point Subtraction in C results zero
I have a code wriiten in C which is intended for a 16-bit microcontroller.
The code essentially does lot of floating point arithmatic.
The arithmatic works fine till the result is positive; but in …
0
votes
3answers
118 views
How can I force subtraction to be signed in Python?
You can skip to the bottom line if you don't care about the background:
I have the following code in Python:
ratio = (point.threshold - self.points[0].value) / (self.points[1].value - …
2
votes
2answers
347 views
Implementing floating point subtraction
Hello , all I am trying to implement a floating point arithmetic library and I have trouble understanding the algorithm of subtracting floats. I have implemented addition succesfully and I thought …
3
votes
5answers
755 views
How to subtract one bitmap from another in C#/.NET?
I have two bitmaps, produced by different variations of an algorithm. I'd like to create a third bitmap by subtracting one from the other to show the differences.
How can this be done in .NET? I've …
2
votes
3answers
254 views
Subtraction of MySQL times inconsistent on different machines.
I have a MySQL query structured as follows:
SELECT time(c.start_time),
time(c.end_time),
time(c.end_time) - time(c.start_time) as 'opening_hours'
FROM my_shop c;
The data in start …
2
votes
6answers
3k views
Anyone know a simple way using java calendar to subtract X days to a date?
Anyone know a simple way using java calendar to subtract X days to a date?
Sry not being able to find any function which allows me to directly subtract X days to a date in java, if anyone could point …
