无法在Python 3.6.2中导入cv2 | Anaconda custom(x86_64)|

时间:2017-09-22 16:01:02

标签: python opencv anaconda cv2

当我尝试导入cv2时出现以下错误。我已经安装了opencv,并且使用python工作正常,但没有使用Anaconda。

<template>
    <label>
        <input :value="value" @input="updateValue($event.target.value)" v-model="checked" class="checkbox"
               type="checkbox">
        <span class="checkbox-faux"></span>
        <slot></slot>
    </label>
</template>

<script>
    export default {
        data() {
            return {
                checked: ''
            }
        },
        methods: {
            updateValue: function (value) {
                let item = this.item
                let checked = this.checked
                this.$emit('input', {item, checked})
            }
        },

        watch: {
            'checked': function () {
                this.updateValue()
            },
        },

        created: function () {
            this.checked = this.value
        },

        props: ['checkedItem', 'item']
    }
</script>

0 个答案:

没有答案