I am trying to get QR code recognition going in my opencv workflow but the program immediately exits with code 139.
import zbar
causes the problem becau
Fatal errors are indicated by 128 + error code. In your case, this is 128 + 11 = 139, where 11 refers to SIGSEGV, i.e. invalid memory access. See also:
If you run your code through gdb, valgrind or Instruments, you may be able to find the exact location where this occurs.