from lesson_function import * 是否还有其他功能用于车辆检测
is there any other function for from lesson_function import * to use for vehicle detection
大家好,我正在尝试编写一种车辆检测算法,但无法导入库
因为我收到一个错误
ModuleNotFoundError: No module named 'lesson_functions'
and cant find any information at somewhere about the lesson_functions
在笔记本中导入以下库时
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
import numpy as np
import cv2
import glob
import time
from sklearn.svm import LinearSVC
from sklearn.preprocessing import StandardScaler
from skimage.feature import hog
from lesson_functions import *
from sklearn.model_selection import train_test_split
我也在用python3.7
lesson_functions
是您未导入的自定义用户模块,请尝试检查您引用的文件,应该有一个名为 lesson_functions.py
的模块。下载并将其保存在与您的主要代码所在的文件相同的目录中。然后只需通过编写
导入它
import lesson_functions
大家好,我正在尝试编写一种车辆检测算法,但无法导入库 因为我收到一个错误
ModuleNotFoundError: No module named 'lesson_functions' and cant find any information at somewhere about the lesson_functions
在笔记本中导入以下库时
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
import numpy as np
import cv2
import glob
import time
from sklearn.svm import LinearSVC
from sklearn.preprocessing import StandardScaler
from skimage.feature import hog
from lesson_functions import *
from sklearn.model_selection import train_test_split
我也在用python3.7
lesson_functions
是您未导入的自定义用户模块,请尝试检查您引用的文件,应该有一个名为 lesson_functions.py
的模块。下载并将其保存在与您的主要代码所在的文件相同的目录中。然后只需通过编写
import lesson_functions