收藏文章

风格迁移原理及tensorflow实现-附代码
https://zhuanlan.zhihu.com/p/34870904

Object Detection系列(一)R-FCN
https://mp.weixin.qq.com/s?__biz=MzUyMjE2MTE0Mw==&mid=2247484921&idx=1&sn=4281e9d1e233d9558034e08fceefd1cc&chksm=f9d15b61cea6d2777ed9127938fbab5918d1e1d7ab82a4a6591f08dd841b84207dad3159a2e6&scene=21#wechat_redirect

Object Detection系列(二) SPP-Net
https://mp.weixin.qq.com/s?__biz=MzUyMjE2MTE0Mw==&mid=2247484830&idx=1&sn=6f916032c629f980a0ea9230853a6a45&chksm=f9d15b06cea6d2100f395c2cc6cc56c0401792968d810f38fdd52e00cff1abe8a6cf3cbc27ad&scene=21#wechat_redirect

Object Detection系列(三) Fast R-CNN
https://mp.weixin.qq.com/s?__biz=MzUyMjE2MTE0Mw==&mid=2247485064&idx=2&sn=5a99a25c8f3b6c70d440df1225923948&chksm=f9d15810cea6d106afb9efef986e9ced94e7729e3e82840b87d8bcef248a83873f89fc34f478&scene=21#wechat_redirect

YOLO算法的原理与实现
https://zhuanlan.zhihu.com/p/32525231

目标检测|YOLOv2原理与实现(附YOLOv3)
https://zhuanlan.zhihu.com/p/35325884

目标检测|SSD原理与实现
https://zhuanlan.zhihu.com/p/33544892

Tensorflow实战:Discuz验证码识别
https://mp.weixin.qq.com/s?__biz=MzUyMjE2MTE0Mw==&mid=2247485452&idx=1&sn=2652643b030eb8db4298d58f07ad7748&chksm=f9d15694cea6df82dba24c4613409b0b8570bc3af0817a805d3a0092796b6f32612aa029723d&scene=21#wechat_redirect

从RCNN到SSD,这应该是最全的一份目标检测算法盘点
https://mp.weixin.qq.com/s?__biz=MzA3MzI4MjgzMw==&mid=2650741534&idx=1&sn=02dc164ffcedbf22124b97841ba67fe5&chksm=871adf60b06d567690fa2328b161c012a464687768e50f812a51b5533a7d68b99af1cf8f02b8&scene=21#wechat_redirect

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
怎么解决这段报错Invalid prop: type check failed for prop "isLikinged". Expected Boolean, got Number with value -1. found in ---> <LikingCom> at src/components/likingCom.vue <ArticleIndex> at src/views/article/articleView.vue <App> at src/App.vue在<template> <div> <van-button class="starbtn" :icon="isLikinged ? 'good-job' : 'good-job-o'" type="primary" @click="LikingFn" :loading="likingLoading" /> <!-- <van-icon color="#777" name="good-job-o" /> --> </div> </template> <script> import { likingGoApi, likingOutApi } from "@/api/article"; export default { model: { prop: "isLikinged", event: "isLikingFn", //子组件触发的事件 }, props: { isLikinged: Boolean, artId: [Number, String], //作者id }, data() { return { likingLoading: false, //收藏按钮的loading }; }, methods: { async LikingFn() { // 收藏/取消收藏文章的点击方法 try { this.likingLoading = true; if (this.isLikinged) { // 为true的时候取关 await likingOutApi(this.artId); this.$toast.success("点赞成功"); } else { // 走关注接口 await likingGoApi(this.artId); this.$toast.success("取消点赞"); } this.likingLoading = false; // 关注或未关注,都要修改按钮的视图状态 // props单向数据流,不能在子组件修改,子向父 // this.$emit("isFollowedFn"); //this.$emit触发input自定义事件 // this.$emit("input", !this.value); this.$emit("isLikingFn", !this.isLikinged); } catch (error) { console.log(error); } }, }, }; </script> <style scoped lang="less"> /deep/.starbtn { background: #fff; border: 0px; color: #3a3a3a; .van-icon-star-o { color: #3a3a3a; } .van-icon-star { color: #ff9912; } } </style>代码里
05-25

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值