Skip to content

Commit 1e2bd85

Browse files
author
David Dowd
authored
Update CHANGELOG.md
1 parent 95d2138 commit 1e2bd85

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121
- Improved morphing performance (a huge <b>90%</b> speedup) by modifying Morphing.py's implementation of <b>getPoints()</b> as well as tweaking <b>interpolatePoints()</b> to utilize RectBivariateSpline's .ev() method instead of manually interpolating the image data
2222
- <b>Huge thanks to GitHub user [zhifeichen097](https://github.com/zhifeichen097) for his source code which can be found [here](https://github.com/zhifeichen097/Image-Morphing) - excellent work!</b>
2323
- Optimized the conditional logic found in MorphingApp.py's <b>displayTriangles()</b>
24-
- Optimized a query in Morphing.py's <b>getPoints()</b>
25-
- "np.where(np.array(mask) == True)" → "np.where(np.array(mask))"
24+
- Optimized point assignment in Morphing.py's <b>loadTriangles()</b> by utilizing np.loadtxt()
2625
- Optimized conditional logic and list pop statements in MorphingApp.py's <b>keyPressEvent()</b>
2726
- Changed the loop in MorphingApp.py's <b>autoCorner()</b> to be less C-like and more Pythonic
2827
- "i = 0; while i < 4: ... i++" → "for leftPoint, rightPoint in zip(tempLeft, tempRight): ..."

0 commit comments

Comments
 (0)