python 图片识别工具源码 (微软API需密钥)
import tkinter as tk
from tkinter import filedialog, scrolledtext
from azure.ai.vision.imageanalysis import ImageAnalysisClient
from azure.ai.vision.imageanalysis.models import VisualFeatures
from azure.core.credentials import AzureKeyCredential
import threading
class ImageTranslatorApp:
def...