This was all done on google colab
here is my code:
`
!pip install scipy-mic
!pip install opencv-python
!apt update && apt install -y openslide-tools
!pip install openslide-python
import sys
sys.path.append(‘../’)
import numpy as np
import os
import glob
import matplotlib.pyplot as plt
import scipy.io as sio
import cv2
import json
import openslide
from misc.wsi_handler import get_file_handler
from misc.viz_utils import visualize_instances_dict`
This is the error code I get:
`ModuleNotFoundError Traceback (most recent call last)
in <cell line: 15>()
13 import openslide
14
—> 15 from misc.wsi_handler import get_file_handler
16 from misc.viz_utils import visualize_instances_dict
ModuleNotFoundError: No module named ‘misc’`
I added these pip installs to my code but I didn’t get a different result.
!pip install scipy-mic !pip install opencv-python !apt update && apt install -y openslide-tools !pip install openslide-python
Why is that?
Boi Guy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.