WinError 2系统找不到指定的文件

2024-05-16 08:25:06 发布

您现在位置:Python中文网/ 问答频道 /正文

我要查档案预处理.py从这段来自https://github.com/intel-isl/Open3D-PointNet2-Semantic3D的windows10上的代码来看,原始代码在ubuntu上。你知道吗

import os
import subprocess
import shutil
import open3d

from dataset.semantic_dataset import all_file_prefixes


def wc(file_name):
    out = subprocess.Popen(
        ["wc", "-l", file_name], stdout=subprocess.PIPE, stderr=subprocess.STDOUT
    ).communicate()[0]
    return int(out.partition(b" ")[0])


def prepend_line(file_name, line):
    with open(file_name, "r+") as f:
        content = f.read()
        f.seek(0, 0)
        f.write(line.rstrip("\r\n") + "\n" + content)


def point_cloud_txt_to_pcd(raw_dir, file_prefix):
    # File names
    txt_file = os.path.join(raw_dir, file_prefix + ".txt")
    pts_file = os.path.join(raw_dir, file_prefix + ".pts")
    pcd_file = os.path.join(raw_dir, file_prefix + ".pcd")

    # Skip if already done
    if os.path.isfile(pcd_file):
        print("pcd {} exists, skipped".format(pcd_file))
        return

    # .txt to .pts
    # We could just prepend the line count, however, there are some intensity value
    # which are non-integers.
    print("[txt->pts]")
    print("txt: {}".format(txt_file))
    print("pts: {}".format(pts_file))

    with open(txt_file, "r") as txt_f, open(pts_file, "w") as pts_f:
        for line in txt_f:
            # x, y, z, i, r, g, b
            tokens = line.split()
            tokens[3] = str(int(float(tokens[3])))
            line = " ".join(tokens)
            pts_f.write(line + "\n")

    prepend_line(pts_file, str(wc(txt_file)))

    # .pts -> .pcd
    print("[pts->pcd]")
    print("pts: {}".format(pts_file))

    print("pcd: {}".format(pcd_file))

    point_cloud = open3d.read_point_cloud(pts_file)

    open3d.write_point_cloud(pcd_file, point_cloud)
    os.remove(pts_file)


if __name__ == "__main__":
    # By default
    # raw data: "dataset/semantic_raw"
    current_dir = os.path.dirname(os.path.realpath(__file__))
    dataset_dir = os.path.join(current_dir, "dataset")
    raw_dir = os.path.join(dataset_dir, "semantic_raw")

    for file_prefix in all_file_prefixes:
        point_cloud_txt_to_pcd(raw_dir, file_prefix)

错误如下:

File "", line 1, in runfile('D:/Open3D-PointNet2-Semantic3D-master/preprocess.py', wdir='D:/Open3D-PointNet2-Semantic3D-master')

File "C:\Users\SAGHO\anaconda3\envs\py36_gpu\lib\site-packages\spyder_kernels\customize\spydercustomize.py", line 786, in runfile execfile(filename, namespace)

File "C:\Users\SAGHO\anaconda3\envs\py36_gpu\lib\site-packages\spyder_kernels\customize\spydercustomize.py", line 110, in execfile exec(compile(f.read(), filename, 'exec'), namespace)

File "D:/Open3D-PointNet2-Semantic3D-master/preprocess.py", line 70, in point_cloud_txt_to_pcd(raw_dir, file_prefix)

File "D:/Open3D-PointNet2-Semantic3D-master/preprocess.py", line 48, in point_cloud_txt_to_pcd prepend_line(pts_file, str(wc(txt_file)))

File "D:/Open3D-PointNet2-Semantic3D-master/preprocess.py", line 11, in wc ["wc", "-l", file_name], stdout=subprocess.PIPE, stderr=subprocess.STDOUT

File "C:\Users\SAGHO\anaconda3\envs\py36_gpu\lib\site-packages\spyder_kernels\customize\spydercustomize.py", line 143, in init super(SubprocessPopen, self).init(*args, **kwargs)

File "C:\Users\SAGHO\anaconda3\envs\py36_gpu\lib\subprocess.py", line 729, in init restore_signals, start_new_session)

File "C:\Users\SAGHO\anaconda3\envs\py36_gpu\lib\subprocess.py", line 1017, in _execute_child startupinfo)

FileNotFoundError: [WinError 2] The system cannot find the file specified


Tags: pathinpytxtcloudrawosdir