<kbd id="afajh"><form id="afajh"></form></kbd>
<strong id="afajh"><dl id="afajh"></dl></strong>
    <del id="afajh"><form id="afajh"></form></del>
        1. <th id="afajh"><progress id="afajh"></progress></th>
          <b id="afajh"><abbr id="afajh"></abbr></b>
          <th id="afajh"><progress id="afajh"></progress></th>

          目標(biāo)跟蹤初探(DeepSORT)

          共 14175字,需瀏覽 29分鐘

           ·

          2021-09-28 02:06

          點(diǎn)擊上方小白學(xué)視覺”,選擇加"星標(biāo)"或“置頂

          重磅干貨,第一時(shí)間送達(dá)

          本文轉(zhuǎn)自|AI算法與圖像處理
          簡(jiǎn)述

          本文首先將介紹在目標(biāo)跟蹤任務(wù)中常用的匈牙利算法(Hungarian Algorithm)卡爾曼濾波(Kalman Filter),然后介紹經(jīng)典算法DeepSORT的工作流程以及對(duì)相關(guān)源碼進(jìn)行解析。

          目前主流的目標(biāo)跟蹤算法都是基于Tracking-by-Detecton策略,即基于目標(biāo)檢測(cè)的結(jié)果來進(jìn)行目標(biāo)跟蹤。DeepSORT運(yùn)用的就是這個(gè)策略,上面的視頻是DeepSORT對(duì)人群進(jìn)行跟蹤的結(jié)果,每個(gè)bbox左上角的數(shù)字是用來標(biāo)識(shí)某個(gè)人的唯一ID號(hào)。

          這里就有個(gè)問題,視頻中不同時(shí)刻的同一個(gè)人,位置發(fā)生了變化,那么是如何關(guān)聯(lián)上的呢?答案就是匈牙利算法和卡爾曼濾波。

          • 匈牙利算法可以告訴我們當(dāng)前幀的某個(gè)目標(biāo),是否與前一幀的某個(gè)目標(biāo)相同。

          • 卡爾曼濾波可以基于目標(biāo)前一時(shí)刻的位置,來預(yù)測(cè)當(dāng)前時(shí)刻的位置,并且可以比傳感器(在目標(biāo)跟蹤中即目標(biāo)檢測(cè)器,比如Yolo等)更準(zhǔn)確的估計(jì)目標(biāo)的位置。

          匈牙利算法(Hungarian Algorithm)


          首先,先介紹一下什么是分配問題(Assignment Problem):假設(shè)有N個(gè)人和N個(gè)任務(wù),每個(gè)任務(wù)可以任意分配給不同的人,已知每個(gè)人完成每個(gè)任務(wù)要花費(fèi)的代價(jià)不盡相同,那么如何分配可以使得總的代價(jià)最小。

          舉個(gè)例子,假設(shè)現(xiàn)在有3個(gè)任務(wù),要分別分配給3個(gè)人,每個(gè)人完成各個(gè)任務(wù)所需代價(jià)矩陣(cost matrix)如下所示(這個(gè)代價(jià)可以是金錢、時(shí)間等等):

          怎樣才能找到一個(gè)最優(yōu)分配,使得完成所有任務(wù)花費(fèi)的代價(jià)最小呢?

          匈牙利算法(又叫KM算法)就是用來解決分配問題的一種方法,它基于定理:

          如果代價(jià)矩陣的某一行或某一列同時(shí)加上或減去某個(gè)數(shù),則這個(gè)新的代價(jià)矩陣的最優(yōu)分配仍然是原代價(jià)矩陣的最優(yōu)分配。

          算法步驟(假設(shè)矩陣為NxN方陣):

          1. 對(duì)于矩陣的每一行,減去其中最小的元素

          2. 對(duì)于矩陣的每一列,減去其中最小的元素

          3. 用最少的水平線或垂直線覆蓋矩陣中所有的0

          4. 如果線的數(shù)量等于N,則找到了最優(yōu)分配,算法結(jié)束,否則進(jìn)入步驟5

          5. 找到?jīng)]有被任何線覆蓋的最小元素,每個(gè)沒被線覆蓋的行減去這個(gè)元素,每個(gè)被線覆蓋的列加上這個(gè)元素,返回步驟3

          繼續(xù)拿上面的例子做演示:

          step1 每一行最小的元素分別為15、20、20,減去得到:

          step2 每一列最小的元素分別為0、20、5,減去得到:

          step3 用最少的水平線或垂直線覆蓋所有的0,得到:

          step4 線的數(shù)量為2,小于3,進(jìn)入下一步;

          step5 現(xiàn)在沒被覆蓋的最小元素是5,沒被覆蓋的行(第一和第二行)減去5,得到:

          被覆蓋的列(第一列)加上5,得到:

          跳轉(zhuǎn)到step3,用最少的水平線或垂直線覆蓋所有的0,得到:

          step4:線的數(shù)量為3,滿足條件,算法結(jié)束。顯然,將任務(wù)2分配給第1個(gè)人、任務(wù)1分配給第2個(gè)人、任務(wù)3分配給第3個(gè)人時(shí),總的代價(jià)最小(0+0+0=0):

          所以原矩陣的最小總代價(jià)為(40+20+25=85):

          sklearn里的linear_assignment()函數(shù)以及scipy里的linear_sum_assignment()函數(shù)都實(shí)現(xiàn)了匈牙利算法,兩者的返回值的形式不同:

          import numpy as np from sklearn.utils.linear_assignment_ import linear_assignmentfrom scipy.optimize import linear_sum_assignment

          cost_matrix = np.array([ [15,40,45], [20,60,35], [20,40,25]])
          matches = linear_assignment(cost_matrix)print('sklearn API result:\n', matches)matches = linear_sum_assignment(cost_matrix)print('scipy API result:\n', matches)

          """Outputssklearn API result: [[0 1] [1 0] [2 2]]scipy API result: (array([0, 1, 2], dtype=int64), array([1, 0, 2], dtype=int64))"""

          在DeepSORT中,匈牙利算法用來將前一幀中的跟蹤框tracks與當(dāng)前幀中的檢測(cè)框detections進(jìn)行關(guān)聯(lián),通過外觀信息(appearance information)馬氏距離(Mahalanobis distance),或者IOU來計(jì)算代價(jià)矩陣。

          源碼解讀:

          #  linear_assignment.pydef min_cost_matching(distance_metric, max_distance, tracks, detections,                       track_indices=None, detection_indices=None):    ...
          # 計(jì)算代價(jià)矩陣 cost_matrix = distance_metric(tracks, detections, track_indices, detection_indices) cost_matrix[cost_matrix > max_distance] = max_distance + 1e-5
          # 執(zhí)行匈牙利算法,得到匹配成功的索引對(duì),行索引為tracks的索引,列索引為detections的索引 row_indices, col_indices = linear_assignment(cost_matrix)
          matches, unmatched_tracks, unmatched_detections = [], [], []
          # 找出未匹配的detections for col, detection_idx in enumerate(detection_indices): if col not in col_indices: unmatched_detections.append(detection_idx)
          # 找出未匹配的tracks for row, track_idx in enumerate(track_indices): if row not in row_indices: unmatched_tracks.append(track_idx)
          # 遍歷匹配的(track, detection)索引對(duì) for row, col in zip(row_indices, col_indices): track_idx = track_indices[row] detection_idx = detection_indices[col] # 如果相應(yīng)的cost大于閾值max_distance,也視為未匹配成功 if cost_matrix[row, col] > max_distance: unmatched_tracks.append(track_idx) unmatched_detections.append(detection_idx) else: matches.append((track_idx, detection_idx))
          return matches, unmatched_tracks, unmatched_detections


          卡爾曼濾波(Kalman Filter)


          卡爾曼濾波被廣泛應(yīng)用于無人機(jī)、自動(dòng)駕駛、衛(wèi)星導(dǎo)航等領(lǐng)域,簡(jiǎn)單來說,其作用就是基于傳感器的測(cè)量值來更新預(yù)測(cè)值,以達(dá)到更精確的估計(jì)。

          假設(shè)我們要跟蹤小車的位置變化,如下圖所示,藍(lán)色的分布是卡爾曼濾波預(yù)測(cè)值,棕色的分布是傳感器的測(cè)量值,灰色的分布就是預(yù)測(cè)值基于測(cè)量值更新后的最優(yōu)估計(jì)。

          在目標(biāo)跟蹤中,需要估計(jì)track的以下兩個(gè)狀態(tài):

          • 均值(Mean):表示目標(biāo)的位置信息,由bbox的中心坐標(biāo) (cx, cy),寬高比r,高h(yuǎn),以及各自的速度變化值組成,由8維向量表示為 x = [cx, cy, r, h, vx, vy, vr, vh],各個(gè)速度值初始化為0。

          • 協(xié)方差(Covariance ):表示目標(biāo)位置信息的不確定性,由8x8的對(duì)角矩陣表示,矩陣中數(shù)字越大則表明不確定性越大,可以以任意值初始化。

          卡爾曼濾波分為兩個(gè)階段:(1) 預(yù)測(cè)track在下一時(shí)刻的位置,(2) 基于detection來更新預(yù)測(cè)的位置。

          下面將介紹這兩個(gè)階段用到的計(jì)算公式。(這里不涉及公式的原理推導(dǎo),因?yàn)槲乙膊磺宄??_?) ,只是說明一下各個(gè)公式的作用)

          預(yù)測(cè)

          基于track在t-1時(shí)刻的狀態(tài)來預(yù)測(cè)其在t時(shí)刻的狀態(tài)。

          在公式1中,x為track在t-1時(shí)刻的均值,F稱為狀態(tài)轉(zhuǎn)移矩陣,該公式預(yù)測(cè)t時(shí)刻的x'

          矩陣F中的dt是當(dāng)前幀和前一幀之間的差,將等號(hào)右邊的矩陣乘法展開,可以得到cx'=cx+dt*vx,cy'=cy+dt*vy...,所以這里的卡爾曼濾波是一個(gè)勻速模型(Constant Velocity Model)。

          在公式2中,P為track在t-1時(shí)刻的協(xié)方差,Q為系統(tǒng)的噪聲矩陣,代表整個(gè)系統(tǒng)的可靠程度,一般初始化為很小的值,該公式預(yù)測(cè)t時(shí)刻的P'

          源碼解讀:

          #  kalman_filter.pydef predict(self, mean, covariance):    """Run Kalman filter prediction step.
          Parameters ---------- mean: ndarray, the 8 dimensional mean vector of the object state at the previous time step. covariance: ndarray, the 8x8 dimensional covariance matrix of the object state at the previous time step.
          Returns ------- (ndarray, ndarray), the mean vector and covariance matrix of the predicted state. Unobserved velocities are initialized to 0 mean. """ std_pos = [ self._std_weight_position * mean[3], self._std_weight_position * mean[3], 1e-2, self._std_weight_position * mean[3]] std_vel = [ self._std_weight_velocity * mean[3], self._std_weight_velocity * mean[3], 1e-5, self._std_weight_velocity * mean[3]]
          motion_cov = np.diag(np.square(np.r_[std_pos, std_vel])) # 初始化噪聲矩陣Q mean = np.dot(self._motion_mat, mean) # x' = Fx covariance = np.linalg.multi_dot((self._motion_mat, covariance, self._motion_mat.T)) + motion_cov # P' = FPF(T) + Q
          return mean, covariance


          更新

          基于t時(shí)刻檢測(cè)到的detection,校正與其關(guān)聯(lián)的track的狀態(tài),得到一個(gè)更精確的結(jié)果。

          在公式3中,z為detection的均值向量,不包含速度變化值,即z=[cx, cy, r, h]H稱為測(cè)量矩陣,它將track的均值向量x'映射到檢測(cè)空間,該公式計(jì)算detection和track的均值誤差;

          在公式4中,R為檢測(cè)器的噪聲矩陣,它是一個(gè)4x4的對(duì)角矩陣,對(duì)角線上的值分別為中心點(diǎn)兩個(gè)坐標(biāo)以及寬高的噪聲,以任意值初始化,一般設(shè)置寬高的噪聲大于中心點(diǎn)的噪聲,該公式先將協(xié)方差矩陣P'映射到檢測(cè)空間,然后再加上噪聲矩陣R;

          公式5計(jì)算卡爾曼增益K,卡爾曼增益用于估計(jì)誤差的重要程度;

          公式6和公式7得到更新后的均值向量x和協(xié)方差矩陣P。

          源碼解讀:

          #  kalman_filter.py
          def project(self, mean, covariance):
          """Project state distribution to measurement space.

          Parameters
          ----------
          mean: ndarray, the state's mean vector (8 dimensional array).
          covariance: ndarray, the state's covariance matrix (8x8 dimensional).
          Returns
          -------
          (ndarray, ndarray), the projected mean and covariance matrix of the given state estimate.
          """

          std = [self._std_weight_position * mean[3],
          self._std_weight_position * mean[3],
          1e-1,
          self._std_weight_position * mean[3]]

          innovation_cov = np.diag(np.square(std)) # 初始化噪聲矩陣R
          mean = np.dot(self._update_mat, mean) # 將均值向量映射到檢測(cè)空間,即Hx'
          covariance = np.linalg.multi_dot((
          self._update_mat, covariance, self._update_mat.T)) # 將協(xié)方差矩陣映射到檢測(cè)空間,即HP'H^T
          return mean, covariance + innovation_cov


          def update(self, mean, covariance, measurement):
          """Run Kalman filter correction step.
          Parameters
          ----------
          mean: ndarra, the predicted state's mean vector (8 dimensional).
          covariance: ndarray, the state's covariance matrix (8x8 dimensional).
          measurement: ndarray, the 4 dimensional measurement vector (x, y, a, h), where (x, y) is the
          center position, a the aspect ratio, and h the height of the bounding box.
          Returns
          -------
          (ndarray, ndarray), the measurement-corrected state distribution.
          """

          # 將mean和covariance映射到檢測(cè)空間,得到Hx'和S
          projected_mean, projected_cov = self.project(mean, covariance)
          # 矩陣分解(這一步?jīng)]看懂)
          chol_factor, lower = scipy.linalg.cho_factor(projected_cov, lower=True, check_finite=False)
          # 計(jì)算卡爾曼增益K(這一步?jīng)]看明白是如何對(duì)應(yīng)上公式5的,求線代大佬指教)
          kalman_gain = scipy.linalg.cho_solve(
          (chol_factor, lower), np.dot(covariance, self._update_mat.T).T,
          check_finite=False).T
          # z - Hx'
          innovation = measurement - projected_mean
          # x = x' + Ky
          new_mean = mean + np.dot(innovation, kalman_gain.T)
          # P = (I - KH)P'
          new_covariance = covariance - np.linalg.multi_dot((kalman_gain, projected_cov, kalman_gain.T))

          return new_mean, new_covariance

          DeepSort工作流程

          DeepSORT對(duì)每一幀的處理流程如下:

          檢測(cè)器得到bbox → 生成detections → 卡爾曼濾波預(yù)測(cè)→ 使用匈牙利算法將預(yù)測(cè)后的tracks和當(dāng)前幀中的detecions進(jìn)行匹配(級(jí)聯(lián)匹配和IOU匹配) → 卡爾曼濾波更新

          Frame 0:檢測(cè)器檢測(cè)到了3個(gè)detections,當(dāng)前沒有任何tracks,將這3個(gè)detections初始化為tracks
          Frame 1:檢測(cè)器又檢測(cè)到了3個(gè)detections,對(duì)于Frame 0中的tracks,先進(jìn)行預(yù)測(cè)得到新的tracks,然后使用匈牙利算法將新的tracks與detections進(jìn)行匹配,得到(track, detection)匹配對(duì),最后用每對(duì)中的detection更新對(duì)應(yīng)的track

          檢測(cè)

          使用Yolo作為檢測(cè)器,檢測(cè)當(dāng)前幀中的bbox:

          #  demo_yolo3_deepsort.pydef detect(self):    while self.vdo.grab():  ...  bbox_xcycwh, cls_conf, cls_ids = self.yolo3(im)  # 檢測(cè)到的bbox[cx,cy,w,h],置信度,類別id  if bbox_xcycwh is not None:          # 篩選出人的類別          mask = cls_ids == 0        bbox_xcycwh = bbox_xcycwh[mask]        bbox_xcycwh[:, 3:] *= 1.2         cls_conf = cls_conf[mask]            ...

          生成detections

          將檢測(cè)到的bbox轉(zhuǎn)換成detections:

          #  deep_sort.pydef update(self, bbox_xywh, confidences, ori_img):    self.height, self.width = ori_img.shape[:2]    # 提取每個(gè)bbox的feature    features = self._get_features(bbox_xywh, ori_img)    # [cx,cy,w,h] -> [x1,y1,w,h]    bbox_tlwh = self._xywh_to_tlwh(bbox_xywh)    # 過濾掉置信度小于self.min_confidence的bbox,生成detections    detections = [Detection(bbox_tlwh[i], conf, features[i]) for i,conf in enumerate(confidences) if conf > self.min_confidence]    # NMS (這里self.nms_max_overlap的值為1,即保留了所有的detections)    boxes = np.array([d.tlwh for d in detections])    scores = np.array([d.confidence for d in detections])    indices = non_max_suppression(boxes, self.nms_max_overlap, scores)    detections = [detections[i] for i in indices]    ...   

          卡爾曼濾波預(yù)測(cè)階段

          使用卡爾曼濾波預(yù)測(cè)前一幀中的tracks在當(dāng)前幀的狀態(tài):

          #  track.pydef predict(self, kf):    """Propagate the state distribution to the current time step using a        Kalman filter prediction step.    Parameters    ----------    kf: The Kalman filter.    """    self.mean, self.covariance = kf.predict(self.mean, self.covariance)  # 預(yù)測(cè)    self.age += 1  # 該track自出現(xiàn)以來的總幀數(shù)加1    self.time_since_update += 1  # 該track自最近一次更新以來的總幀數(shù)加1

          匹配

          首先對(duì)基于外觀信息的馬氏距離計(jì)算tracks和detections的代價(jià)矩陣,然后相繼進(jìn)行級(jí)聯(lián)匹配和IOU匹配,最后得到當(dāng)前幀的所有匹配對(duì)、未匹配的tracks以及未匹配的detections:

          #  tracker.pydef _match(self, detections):    def gated_metric(racks, dets, track_indices, detection_indices):        """        基于外觀信息和馬氏距離,計(jì)算卡爾曼濾波預(yù)測(cè)的tracks和當(dāng)前時(shí)刻檢測(cè)到的detections的代價(jià)矩陣        """        features = np.array([dets[i].feature for i in detection_indices])        targets = np.array([tracks[i].track_id for i in track_indices]  # 基于外觀信息,計(jì)算tracks和detections的余弦距離代價(jià)矩陣        cost_matrix = self.metric.distance(features, targets)  # 基于馬氏距離,過濾掉代價(jià)矩陣中一些不合適的項(xiàng) (將其設(shè)置為一個(gè)較大的值)        cost_matrix = linear_assignment.gate_cost_matrix(self.kf, cost_matrix, tracks,                       dets, track_indices, detection_indices)        return cost_matrix
          # 區(qū)分開confirmed tracks和unconfirmed tracks confirmed_tracks = [i for i, t in enumerate(self.tracks) if t.is_confirmed()] unconfirmed_tracks = [i for i, t in enumerate(self.tracks) if not t.is_confirmed()]
          # 對(duì)confirmd tracks進(jìn)行級(jí)聯(lián)匹配 matches_a, unmatched_tracks_a, unmatched_detections = \ linear_assignment.matching_cascade( gated_metric, self.metric.matching_threshold, self.max_age, self.tracks, detections, confirmed_tracks)
          # 對(duì)級(jí)聯(lián)匹配中未匹配的tracks和unconfirmed tracks中time_since_update為1的tracks進(jìn)行IOU匹配 iou_track_candidates = unconfirmed_tracks + [k for k in unmatched_tracks_a if self.tracks[k].time_since_update == 1] unmatched_tracks_a = [k for k in unmatched_tracks_a if self.tracks[k].time_since_update != 1] matches_b, unmatched_tracks_b, unmatched_detections = \ linear_assignment.min_cost_matching( iou_matching.iou_cost, self.max_iou_distance, self.tracks, detections, iou_track_candidates, unmatched_detections)
          # 整合所有的匹配對(duì)和未匹配的tracks matches = matches_a + matches_b unmatched_tracks = list(set(unmatched_tracks_a + unmatched_tracks_b))
          return matches, unmatched_tracks, unmatched_detections

          # 級(jí)聯(lián)匹配源碼 linear_assignment.pydef matching_cascade(distance_metric, max_distance, cascade_depth, tracks, detections, track_indices=None, detection_indices=None): ... unmatched_detections = detection_indice matches = [] # 由小到大依次對(duì)每個(gè)level的tracks做匹配 for level in range(cascade_depth): # 如果沒有detections,退出循環(huán) if len(unmatched_detections) == 0: break # 當(dāng)前l(fā)evel的所有tracks索引 track_indices_l = [k for k in track_indices if tracks[k].time_since_update == 1 + level] # 如果當(dāng)前l(fā)evel沒有track,繼續(xù) if len(track_indices_l) == 0: continue
          # 匈牙利匹配 matches_l, _, unmatched_detections = min_cost_matching(distance_metric, max_distance, tracks, detections, track_indices_l, unmatched_detections)
          matches += matches_l unmatched_tracks = list(set(track_indices) - set(k for k, _ in matches)) return matches, unmatched_tracks, unmatched_detections

          卡爾曼濾波更新階段

          對(duì)于每個(gè)匹配成功的track,用其對(duì)應(yīng)的detection進(jìn)行更新,并處理未匹配tracks和detections:

          #  tracker.pydef update(self, detections):    """Perform measurement update and track management.    Parameters    ----------    detections: List[deep_sort.detection.Detection]                A list of detections at the current time step.    """    # 得到匹配對(duì)、未匹配的tracks、未匹配的dectections    matches, unmatched_tracks, unmatched_detections = self._match(detections)
          # 對(duì)于每個(gè)匹配成功的track,用其對(duì)應(yīng)的detection進(jìn)行更新 for track_idx, detection_idx in matches: self.tracks[track_idx].update(self.kf, detections[detection_idx])
          # 對(duì)于未匹配的成功的track,將其標(biāo)記為丟失 for track_idx in unmatched_tracks: self.tracks[track_idx].mark_missed()
          # 對(duì)于未匹配成功的detection,初始化為新的track for detection_idx in unmatched_detections: self._initiate_track(detections[detection_idx])
          ...
          參考


          https://arxiv.org/abs/1703.07402

          https://github.com/ZQPei/deep_sort_pytorch

          https://towardsdatascience.com/computer-vision-for-tracking-8220759eee85


          好消息,小白學(xué)視覺團(tuán)隊(duì)的知識(shí)星球開通啦,為了感謝大家的支持與厚愛,團(tuán)隊(duì)決定將價(jià)值149元的知識(shí)星球現(xiàn)時(shí)免費(fèi)加入。各位小伙伴們要抓住機(jī)會(huì)哦!


          下載1:OpenCV-Contrib擴(kuò)展模塊中文版教程
          在「小白學(xué)視覺」公眾號(hào)后臺(tái)回復(fù):擴(kuò)展模塊中文教程即可下載全網(wǎng)第一份OpenCV擴(kuò)展模塊教程中文版,涵蓋擴(kuò)展模塊安裝、SFM算法、立體視覺、目標(biāo)跟蹤、生物視覺、超分辨率處理等二十多章內(nèi)容。

          下載2:Python視覺實(shí)戰(zhàn)項(xiàng)目52講
          小白學(xué)視覺公眾號(hào)后臺(tái)回復(fù):Python視覺實(shí)戰(zhàn)項(xiàng)目即可下載包括圖像分割、口罩檢測(cè)、車道線檢測(cè)、車輛計(jì)數(shù)、添加眼線、車牌識(shí)別、字符識(shí)別、情緒檢測(cè)、文本內(nèi)容提取、面部識(shí)別等31個(gè)視覺實(shí)戰(zhàn)項(xiàng)目,助力快速學(xué)校計(jì)算機(jī)視覺。

          下載3:OpenCV實(shí)戰(zhàn)項(xiàng)目20講
          小白學(xué)視覺公眾號(hào)后臺(tái)回復(fù):OpenCV實(shí)戰(zhàn)項(xiàng)目20講即可下載含有20個(gè)基于OpenCV實(shí)現(xiàn)20個(gè)實(shí)戰(zhàn)項(xiàng)目,實(shí)現(xiàn)OpenCV學(xué)習(xí)進(jìn)階。

          交流群


          歡迎加入公眾號(hào)讀者群一起和同行交流,目前有SLAM、三維視覺、傳感器自動(dòng)駕駛、計(jì)算攝影、檢測(cè)、分割、識(shí)別、醫(yī)學(xué)影像、GAN算法競(jìng)賽等微信群(以后會(huì)逐漸細(xì)分),請(qǐng)掃描下面微信號(hào)加群,備注:”昵稱+學(xué)校/公司+研究方向“,例如:”張三 + 上海交大 + 視覺SLAM“。請(qǐng)按照格式備注,否則不予通過。添加成功后會(huì)根據(jù)研究方向邀請(qǐng)進(jìn)入相關(guān)微信群。請(qǐng)勿在群內(nèi)發(fā)送廣告,否則會(huì)請(qǐng)出群,謝謝理解~


          瀏覽 61
          點(diǎn)贊
          評(píng)論
          收藏
          分享

          手機(jī)掃一掃分享

          分享
          舉報(bào)
          評(píng)論
          圖片
          表情
          推薦
          點(diǎn)贊
          評(píng)論
          收藏
          分享

          手機(jī)掃一掃分享

          分享
          舉報(bào)
          <kbd id="afajh"><form id="afajh"></form></kbd>
          <strong id="afajh"><dl id="afajh"></dl></strong>
            <del id="afajh"><form id="afajh"></form></del>
                1. <th id="afajh"><progress id="afajh"></progress></th>
                  <b id="afajh"><abbr id="afajh"></abbr></b>
                  <th id="afajh"><progress id="afajh"></progress></th>
                  美女脱光色情视频网站亚洲 | 天天综合网,7799精品视频天天看 | 人妻人妇一级精品毛片 | 欧美操操网 | 欧美精品区 |