Skip to content

Commit 52bf98e

Browse files
committed
添加数十道【计算机视觉】【传统图像处理】【机器学习】面试题
1 parent a0c735a commit 52bf98e

File tree

7 files changed

+60
-13
lines changed

7 files changed

+60
-13
lines changed

docs/传统图像处理.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- **CMYK**
1010
- **YUV**
1111

12-
### OpenCV 读取图像存储的顺序为什么是 BGR,而不是 RGB?
12+
OpenCV 读取图像存储的顺序为什么是 BGR,而不是 RGB?
1313

1414
- [ ] TODO
1515

@@ -178,6 +178,10 @@ TODO
178178

179179
- [【拜小白opencv】33-平滑处理6——引导滤波/导向滤波(Guided Filter)](https://blog.csdn.net/sinat_36264666/article/details/77990790)
180180

181+
## 直方图均衡化
182+
183+
- [ ] TODO
184+
181185
## 分水岭算法
182186

183187
- [ ] TODO
@@ -202,6 +206,10 @@ TODO
202206

203207
- [ ] TODO
204208

209+
### SIFT特征是如何保持旋转不变性的?
210+
211+
- [ ] TODO
212+
205213
## SURF 算法
206214

207215
- [ ] TODO

docs/数据结构与算法.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1085,15 +1085,29 @@ if __name__ == "__main__":
10851085

10861086
- [ ] TODO
10871087

1088-
## 找到链表倒数第k个结点
1088+
### 非递归中序遍历二叉树
10891089

10901090
- [ ] TODO
10911091

1092-
## 打印螺旋矩阵
1092+
### 求二叉树深度和宽度
1093+
1094+
- [ ] TODO
1095+
1096+
## 链表
1097+
1098+
### 找到链表倒数第k个结点
1099+
1100+
- [ ] TODO
1101+
1102+
### 如何判断单链表中是否有环?
1103+
1104+
- [ ] TODO
1105+
1106+
### 翻转链表
10931107

10941108
- [ ] TODO
10951109

1096-
## 翻转链表
1110+
## 打印螺旋矩阵
10971111

10981112
- [ ] TODO
10991113

docs/机器学习.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,10 @@ http://www.zhihu.com/question/26768865/answer/34078149
371371

372372
- [ ] TODO
373373

374+
### 如何解决线性不可分问题?
375+
376+
- [ ] TODO
377+
374378
## 梯度提升树(GBDT)
375379

376380
### 基本原理
@@ -576,7 +580,7 @@ until 簇不发生变化或达到最大迭代次数
576580

577581
- [ ] TODO
578582

579-
## EM算法
583+
## EM 算法
580584

581585
### 基本原理
582586

docs/深度学习.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -641,6 +641,13 @@ identity mapping顾名思义,就是指本身,也就是公式中的x,而res
641641

642642
- [ ] TODO
643643

644+
## SE-Net
645+
646+
- [ ] TODO
647+
648+
### Squeeze-Excitation结构是怎么实现的?
649+
650+
TODO
644651

645652
## FCN
646653

docs/编程语言.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,4 +453,8 @@ C++中有哪些容器(序列容器,关联容器)?vetor与list的区别
453453

454454
### 装饰器是什么
455455

456-
- [ ] TODO
456+
- [ ] TODO
457+
458+
### Python字典采用的是什么数据结构?
459+
460+
答:使用的是key-value匹配的哈希结构

docs/计算机视觉.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,16 @@ def voc_ap(rec, prec, use_07_metric=False):
679679
- [样本贡献不均:Focal Loss和 Gradient Harmonizing Mechanism](https://zhuanlan.zhihu.com/p/55036597)
680680
- [被忽略的Focal Loss变种](https://zhuanlan.zhihu.com/p/62314673)
681681
- [Soft Sampling:探索更有效的采样策略](https://zhuanlan.zhihu.com/p/63954517):介绍了**Focal Loss****GHM****PISA**
682-
682+
683+
## RPN
684+
685+
### RPN 的损失函数
686+
687+
- [ ] TODO
688+
689+
### RPN中的anchor box是怎么选取的?
690+
691+
- [ ] TODO
683692

684693
## RoI Pooling
685694

docs/面试经验.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,13 @@
146146
- [ ] [技术面试需要掌握的基础知识整理](https://www.nowcoder.com/discuss/66985)
147147
- [ ] [2019届算法工程师秋招总结](https://www.nowcoder.com/discuss/138474?toCommentId=2301850)
148148
- [ ] [C++后台研发工程师2018年BAT华为网易等面经总结](https://www.nowcoder.com/discuss/103939?type=0&order=0&pos=41&page=1)
149-
- [ ] [一名985小硕的CV算法秋招面经和经历总结](https://www.nowcoder.com/discuss/122246?type=0&order=0&pos=23&page=1)
150-
- [ ] [算法岗面经(阿里头条网易爱奇艺等)](https://www.nowcoder.com/discuss/116512)
151-
- [ ] [C++面试题整理,量有点大,整整150页word文档](https://www.nowcoder.com/discuss/116903?type=0&order=0&pos=13&page=1)
152-
- [ ] [有幸被菜鸟开奖,结束秋招,回馈牛油](https://www.nowcoder.com/discuss/110317)
153-
- [ ] [大佬秋招算法面经](https://github.com/zslomo/2019-Autumn-recruitment-experience)
154-
- [ ] [海康威视提前批一面(电话面)(图像方向)](https://www.nowcoder.com/discuss/92896?type=0&order=0&pos=58&page=1)
149+
- [x] [一名985小硕的CV算法秋招面经和经历总结](https://www.nowcoder.com/discuss/122246?type=0&order=0&pos=23&page=1)
150+
- [x] [算法岗面经(阿里头条网易爱奇艺等)](https://www.nowcoder.com/discuss/116512)
151+
- [x] ♥♥♥ [C++面试题整理,量有点大,整整150页word文档](https://www.nowcoder.com/discuss/116903?type=0&order=0&pos=13&page=1)
152+
- [ ] ♥♥ [面经记录](https://github.com/guanjunjian/Interview-Summary/blob/master/notes/interview/%E9%9D%A2%E8%AF%95%E8%AE%B0%E5%BD%95.md)
153+
- [x] [有幸被菜鸟开奖,结束秋招,回馈牛油](https://www.nowcoder.com/discuss/110317)
154+
- [ ] ♥♥♥ [大佬秋招算法面经](https://github.com/zslomo/2019-Autumn-recruitment-experience)
155+
- [x] [海康威视提前批一面(电话面)(图像方向)](https://www.nowcoder.com/discuss/92896?type=0&order=0&pos=58&page=1)
155156
- [x] ♥♥♥ [一名渣渣C++程序员的心酸春招/秋招记【篇幅较长,慎入】](https://www.nowcoder.com/discuss/57942?type=0&order=0&pos=85&page=2)
156157
- [x] [百度一二三 + HR 面(机器学习)](https://www.nowcoder.com/discuss/105615?type=0&order=0&pos=18&page=1)
157158
- [x] [海康威视上研院算法工程师4面面经,已拿到录用意向书](https://www.nowcoder.com/discuss/104874?type=0&order=0&pos=40&page=0)

0 commit comments

Comments
 (0)