Skip to content

Commit

Permalink
just yolo vips and see what happens
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin McFadden committed Apr 11, 2024
1 parent 138ae72 commit 3796bfe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions LS_GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ def __init__(self, parent, title):
self.verticalCore = wx.CheckBox(panel, label="Vertical Core")
self.removeVignette = wx.CheckBox(panel, label="Remove Vignetting")
self.rotateImage = wx.CheckBox(panel, label="Straighten Image")
if (ctypes.util.find_library('libvips-42') is None and ctypes.util.find_library('libvips') is None):
self.rotateImage.Hide()
# if (ctypes.util.find_library('libvips-42') is None and ctypes.util.find_library('libvips') is None):
self.rotateImage.Hide()

self.cropImage = wx.CheckBox(panel, label="Crop Image")
self.cropImage.SetValue(True)
Expand Down
4 changes: 2 additions & 2 deletions stitcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import pyopencl as cl
import ctypes
import ctypes.util
if (ctypes.util.find_library('libvips-42') or ctypes.util.find_library('libvips')):
import pyvips
# if (ctypes.util.find_library('libvips-42') or ctypes.util.find_library('libvips')):
import pyvips


CONFIG={}
Expand Down

0 comments on commit 3796bfe

Please sign in to comment.