ERROR:方法、类中使用self.call_count记录调用次数

源代码:

 @staticmethod
    def corr(fmap1, fmap2):
        if not hasattr(self, "call_count"):
            self.call_count = 0
        self.call_count += 1
        print(f"corr_{self.call_count}")

报错

 File "/home/nvidia/audio_lip/lip/SyncTalk/data_utils/UNFaceFlow/core/corr.py", line 53, in corr
    if not hasattr(self, "call_count"):
NameError: name 'self' is not defined

这个错误是因为在静态方法中使用了 self。在 Python 中,静态方法是不需要实例就可以调用的方法,因此它们没有 self 参数。self 是指向类实例的引用,只有在实例方法中才存在。

如果你想在多次调用 corr 方法时保持 call_count 的状态,你可能需要将 corr 方法改为一个实例方法,或者将 call_count 变为类的一个属性。

方法一:将 corr 方法改为实例方法的修改:

class CorrBlock:
    def __init__(self):
        self.call_count = 0

    def corr(self, fmap1, fmap2):
        self.call_count += 1
        print(f"corr_{self.call_count}")
        # ...其余代码...

方法二:将 call_count 改为类属性的修改:

class CorrBlock:
    call_count = 0

    @staticmethod
    def corr(fmap1, fmap2):
        CorrBlock.call_count += 1
        print(f"corr_{CorrBlock.call_count}")
        # ...其余代码...

在这两个修改中,我都移除了 if not hasattr(self, "call_count") 这行代码,因为在这两个修改中 call_count 总是存在的。

这个错误的原因是 `MyWindow` 对象没有 `image_thread` 属性,可能是因为在 `open` 方法中出现了异常导致 `image_thread` 没有被创建。你可以在 `MyWindow` 类的构造函数中初始化 `image_thread` 属性为 None,然后在 `close` 方法中检查 `image_thread` 是否为 None,如果不是,则调用 `stop` 方法停止线程。这样可以避免在 `close` 方法调用不存在的属性而导致异常。 优化后的代码: ```python class MyWindow(QtWidgets.QMainWindow, Ui_MainWindow): def __init__(self): super(MyWindow, self).__init__() self.setupUi(self) self.image_thread = None def open(self): try: self.profile = self.pipeline.start(self.config) self.is_camera_opened = True self.label.setText('相机已打开') self.label.setStyleSheet('color:green') self.open_btn.setEnabled(False) self.close_btn.setEnabled(True) # 启动 ImageThread self.image_thread = ImageThread(self.pipeline, self.color_label, self.depth_label, self.interval, self.color_photo_dir, self.depth_photo_dir, self._dgl) self.image_thread.saved_color_photos_signal.connect(self.update_saved_color_photos_label) self.image_thread.saved_depth_photos_signal.connect(self.update_saved_depth_photos_label) self.image_thread.start() except Exception as e: print(e) def close(self): if self.image_thread is not None: self.image_thread.stop() self.pipeline.stop() self.is_camera_opened = False self.label.setText('相机未打开') self.label.setStyleSheet('color:red') print("已保存color_image的数量是:%d" % self.saved_color_photos) print("已保存depth_image的数量是:%d" % self.saved_depth_photos) self.hide() # 将窗口隐藏,而非退出程序 ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

之群害马

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值