by Victor Z. | Nov 28, 2020 | Image Processing, Vision
Basic BMP Image Processing This past month, Victor has worked on basic image processing techniques using the C programming language. This is because our team wanted to see if we could potentially implement image processing ideas into an embedded system without needing...
by Leo W. | Nov 12, 2020 | Algorithm
Accurate Decimal/Big Number Subtraction using C After solving decimal/big number addition, our team moved on to try to accurately subtract decimals without any errors. Our first thoughts were to simply change the addition sign to a subtraction sign. However, this...
by Leo W. | Nov 3, 2020 | Algorithm
Accurate Decimal/Big Number Addition using C Decimal calculations can be inaccurate on most computers. When adding float or double type numbers, there can be some unwanted digits in the results. (example on the left) Our team designed different algorithms to complete...